Install modules OK

This commit is contained in:
Emilien Mantel
2017-12-14 20:06:29 +01:00
parent 45886ca9cc
commit d3d9b5c296
5 changed files with 5 additions and 10 deletions
+2 -3
View File
@@ -29,10 +29,9 @@
- name: APT | Install nginx modules
apt:
pkg: "libnginx-mod-{{ item | replace('_', '-') }}"
pkg: "{{ item }}"
state: present
with_items: "{{ nginx_dyn_modules }}"
when: ansible_distribution == 'Debian'
with_items: "{{ nginx_module_packages }}"
- name: APT | Install python-passlib
apt:
-4
View File
@@ -12,10 +12,6 @@
include: prepare.yml
tags: ['nginx::site', 'nginx::ssl']
- name: INCLUDE | Manage dynamic modules
include: dyn_modules.yml
when: nginx_version.stdout | version_compare('1.9.11', 'ge')
- name: INCLUDE | Install
include: config.yml