summaryrefslogtreecommitdiffstats
path: root/roles/torrelay/tasks
diff options
context:
space:
mode:
authorMatthieu Saulnier <fantom@fedoraproject.org>2018-07-16 20:09:23 +0200
committerMatthieu Saulnier <fantom@fedoraproject.org>2018-07-16 20:09:23 +0200
commitbe4ef34e78687bea5079b061b544e51a83493c22 (patch)
tree09476de051b6b55d664835aed5c632dc349e126c /roles/torrelay/tasks
parente4f638fe1a26e4e4439cdaaca5b4d05cfaacc93c (diff)
downloadplaybooks-ansible-be4ef34e78687bea5079b061b544e51a83493c22.tar.gz
playbooks-ansible-be4ef34e78687bea5079b061b544e51a83493c22.tar.xz
playbooks-ansible-be4ef34e78687bea5079b061b544e51a83493c22.zip
Replace deprecated include statement
Diffstat (limited to 'roles/torrelay/tasks')
-rw-r--r--roles/torrelay/tasks/main.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/roles/torrelay/tasks/main.yml b/roles/torrelay/tasks/main.yml
index 1081c8b..a1cde63 100644
--- a/roles/torrelay/tasks/main.yml
+++ b/roles/torrelay/tasks/main.yml
@@ -1,14 +1,14 @@
- name: Installation des paquets
- include: pkgs.yml
+ import_tasks: pkgs.yml
- name: Configuration des services
- include: config.yml
+ import_tasks: config.yml
- name: Configuration du parefeu
- include: fw.yml
+ import_tasks: fw.yml
- name: Modules et booleens SELinux
- include: selinux.yml
+ import_tasks: selinux.yml
- name: Gestion du service
- include: services.yml
+ import_tasks: services.yml