Install modules OK

This commit is contained in:
Emilien Mantel
2017-12-14 19:55:22 +01:00
parent 45886ca9cc
commit d3d9b5c296
5 changed files with 5 additions and 10 deletions

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:

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