mirror of
https://github.com/geerlingguy/ansible-role-nginx.git
synced 2025-02-12 00:31:47 +01:00
Merge pull request #1 from Richard-NL/master
Add support for Debian flavors (initial).
This commit is contained in:
commit
373d428ad1
@ -1,9 +1,17 @@
|
||||
---
|
||||
- name: Enable nginx repo.
|
||||
copy: src=nginx.repo dest=/etc/yum.repos.d/nginx.repo owner=root group=root mode=644
|
||||
when: ansible_os_family == 'RedHat'
|
||||
|
||||
- name: Ensure nginx is installed.
|
||||
yum: pkg=nginx state=installed enablerepo=nginx
|
||||
when: ansible_os_family == 'RedHat'
|
||||
|
||||
- name: Ensure nginx is installed.
|
||||
apt: pkg=nginx state=installed update_cache=true
|
||||
notify:
|
||||
- restart nginx
|
||||
when: ansible_os_family == 'Debian'
|
||||
|
||||
- name: Copy nginx configuration in place.
|
||||
template: >
|
||||
|
Loading…
Reference in New Issue
Block a user