Explorar el Código

Merge pull request #1 from Richard-NL/master

Add support for Debian flavors (initial).
Jeff Geerling hace 11 años
padre
commit
373d428ad1
Se han modificado 1 ficheros con 8 adiciones y 0 borrados
  1. 8 0
      tasks/main.yml

+ 8 - 0
tasks/main.yml

@@ -1,9 +1,17 @@
 ---
 ---
 - name: Enable nginx repo.
 - name: Enable nginx repo.
   copy: src=nginx.repo dest=/etc/yum.repos.d/nginx.repo owner=root group=root mode=644
   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.
 - name: Ensure nginx is installed.
   yum: pkg=nginx state=installed enablerepo=nginx
   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.
 - name: Copy nginx configuration in place.
   template: >
   template: >