Fix the remaining var-spacing ansible-lint errors

Reference: https://ansible-lint.readthedocs.io/en/latest/default_rules/#var-spacing
This commit is contained in:
Slavi Pantaleev
2022-07-18 15:33:41 +03:00
parent cac9bf2637
commit c1849ae888
6 changed files with 15 additions and 5 deletions

View File

@ -23,6 +23,6 @@
- name: Register user
ansible.builtin.command:
cmd: "{{ matrix_local_bin_path }}/matrix-dendrite-create-account {{ username|quote }} {{ password|quote }}"
cmd: "{{ matrix_local_bin_path }}/matrix-dendrite-create-account {{ username | quote }} {{ password | quote }}"
register: matrix_dendrite_register_user_result
changed_when: matrix_dendrite_register_user_result.rc == 0