Revert "roles/common: Use static imports for tasks"

This reverts commit 5147f4029b.

I think this was a side effect of using Python 3, not a regression in
Ansible 2.4.0.0.
This commit is contained in:
Alan Orth 2017-11-04 23:52:53 +02:00
parent 620e8258ac
commit 63c5477f85
Signed by: alanorth
GPG Key ID: 0FB860CC9C45B1B9
1 changed files with 2 additions and 14 deletions

View File

@ -10,23 +10,11 @@
tags: ntp
- name: Install common packages
import_tasks: packages_Debian.yml
when: ansible_distribution == 'Debian'
tags: packages
- name: Install common packages
import_tasks: packages_Ubuntu.yml
when: ansible_distribution == 'Ubuntu'
include_tasks: packages_{{ ansible_distribution }}.yml
tags: packages
- name: Configure firewall
import_tasks: firewall_Debian.yml
when: ansible_distribution == 'Debian'
tags: firewall
- name: Configure firewall
import_tasks: firewall_Ubuntu.yml
when: ansible_distribution == 'Ubuntu'
include_tasks: firewall_{{ ansible_distribution }}.yml
tags: firewall
- name: Configure secure shell daemon