Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: rename ansible-role-nginx to jdauphant.nginx #2

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
8 changes: 4 additions & 4 deletions tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,21 +35,21 @@

- name: run Nginx selinux tasks
include_role:
name: ansible-role-nginx
name: jdauphant.nginx
tasks_from: selinux.yml
allow_duplicates: yes
when: ansible_selinux and ansible_selinux.status == "enabled"

- name: run Nginx nginx offical repo tasks
include_role:
name: ansible-role-nginx
name: jdauphant.nginx
tasks_from: nginx-official-repo.yml
allow_duplicates: yes
when: nginx_official_repo == True

- name: run Nginx install packages tasks
include_role:
name: ansible-role-nginx
name: jdauphant.nginx
tasks_from: installation.packages.yml
allow_duplicates: yes
# when: nginx_installation_type == "packages"
Expand All @@ -67,7 +67,7 @@

- name: Configure Nginx now that the Modsec module is built
import_role:
name: ansible-role-nginx
name: jdauphant.nginx

- name: Check which packages were installed for Debian/Ubuntu
shell: dpkg-query -l > /tmp/after.txt
Expand Down