diff options
| author | spmfox <spmfox@foxwd.com> | 2023-06-17 00:44:59 -0400 |
|---|---|---|
| committer | spmfox <spmfox@foxwd.com> | 2023-06-17 00:44:59 -0400 |
| commit | 3b7578a6658ec2d4aa96344bacf4b116cbb1853c (patch) | |
| tree | 8d06859f0dc302337b325b2bacd78359ef58233c /roles/guest-configure/tasks/main.yml | |
| parent | 44646dacd59db844e039a9ca566c7c48e35abe1b (diff) | |
ansible-lint cleanup
Diffstat (limited to 'roles/guest-configure/tasks/main.yml')
| -rw-r--r-- | roles/guest-configure/tasks/main.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/roles/guest-configure/tasks/main.yml b/roles/guest-configure/tasks/main.yml index 4be58be..519fcf0 100644 --- a/roles/guest-configure/tasks/main.yml +++ b/roles/guest-configure/tasks/main.yml @@ -9,16 +9,16 @@ - name: Import packages task ansible.builtin.import_tasks: packages.yml - when: (guest_configure_packages|length > 0) or (guest_configure_packages_preq|length > 0) + when: (guest_configure_packages | length > 0) or (guest_configure_packages_preq | length > 0) - name: Import user creation task ansible.builtin.import_tasks: user.yml - when: guest_configure_user|length > 0 + when: guest_configure_user | length > 0 - name: Import services task ansible.builtin.import_tasks: services.yml - when: guest_configure_services|length > 0 + when: guest_configure_services | length > 0 - name: Import automatic-update task ansible.builtin.import_tasks: automatic-update.yml - when: guest_configure_services|length > 0 + when: guest_configure_services | length > 0 |
