mirror of
https://github.com/geerlingguy/ansible-role-nginx.git
synced 2024-11-16 10:35:33 +01:00
added support for Debian based os
This commit is contained in:
parent
299b70fc1e
commit
9b91816d3f
@ -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