From 6ecbf9ada447483c04b2d2918d07eee01b8743bc Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Sun, 5 Nov 2017 01:03:41 +0200 Subject: [PATCH] web.yml: Remove conditional from role include We're only supporting Debian family OSes here anyways. --- web.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/web.yml b/web.yml index 5f4ab2b..110af86 100644 --- a/web.yml +++ b/web.yml @@ -6,11 +6,11 @@ remote_user: provisioning become: yes roles: - - { role: common, when: ansible_os_family == 'Debian' } - - { role: mariadb, when: ansible_os_family == 'Debian' } - - { role: nginx, when: ansible_os_family == 'Debian' } - - { role: php-fpm, when: ansible_os_family == 'Debian' } - - { role: munin, when: ansible_os_family == 'Debian' } + - common + - mariadb + - nginx + - php-fpm + - munin vars_files: - vars/ipsets.yml - "vars/{{ ansible_os_family }}.yml"