Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,8 @@ ENHANCEMENTS:
BUG FIXES:

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

CI/CD:

Expand Down
2 changes: 1 addition & 1 deletion tasks/opensource/install-bsd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
creates: /usr/ports

- name: (DragonFlyBSD/FreeBSD/HardenedBSD) {{ nginx_setup | capitalize }} NGINX
when: ansible_facts['system'] in ['DragonFlyBSD', 'FreeBSD' 'HardenedBSD']
when: ansible_facts['system'] in ['DragonFlyBSD', 'FreeBSD', 'HardenedBSD']
block:
- name: (DragonFlyBSD/FreeBSD/HardenedBSD) {{ nginx_setup | capitalize }} NGINX package
community.general.pkgng:
Expand Down