From a05f5b5dce5a298161f9d07664ce4aaa8721073e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9mi=20Paulmier?= Date: Wed, 27 May 2026 23:44:58 +0200 Subject: [PATCH] Invert directives when importing ref. playbook (#524) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit there was like a typo, where instructions in case of imported playbook were inverted. Signed-off-by: Rémi Paulmier --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index fcca317..4163c86 100644 --- a/README.md +++ b/README.md @@ -109,14 +109,14 @@ Alternatively, to run the playbook from your existing project setup, run the pla ```yaml - name: Import kube cluster playbook - ansible.builtin.import_playbook: k3s-ansible/playbooks/site.yml + ansible.builtin.import_playbook: k3s.orchestration.site ``` *Running the playbook from inside the repository* ```yaml - name: Import kube cluster playbook - ansible.builtin.import_playbook: k3s.orchestration.site + ansible.builtin.import_playbook: k3s-ansible/playbooks/site.yml ```