Invert directives when importing ref. playbook (#524)

there was like a typo, where instructions in case of imported playbook were inverted.

Signed-off-by: Rémi Paulmier <remi.paulmier@gmail.com>
This commit is contained in:
Rémi Paulmier
2026-05-27 23:44:58 +02:00
committed by GitHub
parent 611ca0bbaf
commit a05f5b5dce
+2 -2
View File
@@ -109,14 +109,14 @@ Alternatively, to run the playbook from your existing project setup, run the pla
```yaml ```yaml
- name: Import kube cluster playbook - 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* *Running the playbook from inside the repository*
```yaml ```yaml
- name: Import kube cluster playbook - name: Import kube cluster playbook
ansible.builtin.import_playbook: k3s.orchestration.site ansible.builtin.import_playbook: k3s-ansible/playbooks/site.yml
``` ```