diff options
Diffstat (limited to 'roles')
| -rw-r--r-- | roles/bootstrap/tasks/main.yml | 1 | ||||
| -rw-r--r-- | roles/configure/tasks/main.yml | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/roles/bootstrap/tasks/main.yml b/roles/bootstrap/tasks/main.yml index fbc3de5..fb9653f 100644 --- a/roles/bootstrap/tasks/main.yml +++ b/roles/bootstrap/tasks/main.yml @@ -1,6 +1,7 @@ --- - name: "Set root,boot partition paths" ansible.builtin.set_fact: + # noqa: var-naming[no-role-prefix] as these facts are used for multiple roles and is easier read this way mnt_boot_path: "{{ partition_boot.mount_path }}" mnt_root_path: "{{ partition_root.mount_path }}" diff --git a/roles/configure/tasks/main.yml b/roles/configure/tasks/main.yml index ba1f374..e4ff6b9 100644 --- a/roles/configure/tasks/main.yml +++ b/roles/configure/tasks/main.yml @@ -71,9 +71,9 @@ --extra-vars "@/opt/ansible-distro-configure/host_vars/{{ hostname }}.yml" --tags 'required_for_boot' chdir: "/opt/ansible-distro-configure" - register: playbook + register: configure_playbook changed_when: true - name: "Playbook stdout" ansible.builtin.debug: - msg: "{{ playbook.stdout_lines }}" + msg: "{{ configure_playbook.stdout_lines }}" |
