Merge pull request #1698 from jimeh/fix-to_nice_yaml

fix: avoid yaml being wrapped at column 80 via to_nice_yaml
This commit is contained in:
Slavi Pantaleev
2022-03-16 09:46:32 +02:00
committed by GitHub
34 changed files with 56 additions and 56 deletions

View File

@ -105,7 +105,7 @@
- name: Ensure ma1sd config installed
copy:
content: "{{ matrix_ma1sd_configuration|to_nice_yaml }}"
content: "{{ matrix_ma1sd_configuration|to_nice_yaml(indent=2, width=999999) }}"
dest: "{{ matrix_ma1sd_config_path }}/ma1sd.yaml"
mode: 0644
owner: "{{ matrix_user_username }}"