Skip to content

Commit 6cca699

Browse files
Merge pull request #1035 from ratailor/fix-growvols
Fix growvols shell command YAML syntax
2 parents cdeff8d + 9813106 commit 6cca699

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

roles/edpm_growvols/tasks/main.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,8 @@
3636
growvols_path: "{{ find_growvols.stdout_lines[0] }}"
3737

3838
- name: "Running {{ growvols_path + growvols_args }}"
39-
ansible.builtin.shell: "{{ growvols_path }} --yes {{ growvols_args }}"
39+
ansible.builtin.shell: >-
40+
{{ growvols_path }} --yes {{ growvols_args }}
4041
become: true
4142
register: run_growvols
4243
changed_when: run_growvols.rc == 0

0 commit comments

Comments
 (0)