From c353e84a84f75e864fdc61632be2fed01fac38fb Mon Sep 17 00:00:00 2001 From: Alan Orth Date: Tue, 25 Oct 2022 21:08:27 +0300 Subject: [PATCH] site.yml: use fully-qualified modules --- site.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/site.yml b/site.yml index 2fba82c..2e5ea34 100644 --- a/site.yml +++ b/site.yml @@ -1,7 +1,10 @@ --- # file: site.yml -- import_playbook: nomads.yml -- import_playbook: web.yml +- name: Import nomads playbook + ansible.builtin.import_playbook: nomads.yml + +- name: Import web playbook + ansible.builtin.import_playbook: web.yml # vim: set sw=2 ts=2: