Skip to content

Commit cb9b366

Browse files
authored
Fix installing NGINX on BSD systems (#718)
Fixes #711
1 parent a5b1a71 commit cb9b366

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ ENHANCEMENTS:
1515
BUG FIXES:
1616

1717
- Avoid re-copying the NGINX Amplify config file every time the role is run.
18-
- Fix conditional statements should not include jinja2 templating warning.
18+
- Update conditional statements to avoid include Jinja2 warnings.
19+
- Fix issue when installing NGINX on BSD systems.
1920

2021
CI/CD:
2122

tasks/opensource/install-bsd.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
creates: /usr/ports
1616

1717
- name: (DragonFlyBSD/FreeBSD/HardenedBSD) {{ nginx_setup | capitalize }} NGINX
18-
when: ansible_facts['system'] in ['DragonFlyBSD', 'FreeBSD' 'HardenedBSD']
18+
when: ansible_facts['system'] in ['DragonFlyBSD', 'FreeBSD', 'HardenedBSD']
1919
block:
2020
- name: (DragonFlyBSD/FreeBSD/HardenedBSD) {{ nginx_setup | capitalize }} NGINX package
2121
community.general.pkgng:

0 commit comments

Comments
 (0)