From 1ceb1999fffd87f7ab396f7be15978802dd7ad68 Mon Sep 17 00:00:00 2001 From: Felix Stupp Date: Fri, 12 Jun 2020 13:38:51 +0200 Subject: [PATCH] common: Changed include_tasks to import_tasks To enable static instead of dynamic imports --- roles/common/tasks/main.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/roles/common/tasks/main.yml b/roles/common/tasks/main.yml index 60e4748..13c79dc 100644 --- a/roles/common/tasks/main.yml +++ b/roles/common/tasks/main.yml @@ -1,22 +1,22 @@ --- - name: Configure apt packages - include_tasks: packages.yml + import_tasks: packages.yml - name: Configure sshd - include_tasks: sshd.yml + import_tasks: sshd.yml - name: Configure ufw - include_tasks: ufw.yml + import_tasks: ufw.yml - name: Configure locales - include_tasks: locales.yml + import_tasks: locales.yml - name: Configure custom facts - include_tasks: custom_facts.yml + import_tasks: custom_facts.yml - name: Configure helpers - include_tasks: helpers.yml + import_tasks: helpers.yml - name: Configure ssh key for root user user: