File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 22
33- name : Ensure Qemu guest agent is installed
44 ansible.builtin.dnf :
5- state : " {{common_guest_qemu | bool | ternary('present', 'absent')}}"
5+ state : " {{common_guest_qemu | bool | ternary('present', 'absent') }}"
66 name : qemu-guest-agent
77 install_weak_deps : false
88 retries : 10
1313
1414- name : Ensure Qemu guest agent is installed
1515 community.general.rpm_ostree_pkg :
16- state : " {{common_guest_qemu | bool | ternary('present', 'absent')}}"
16+ state : " {{common_guest_qemu | bool | ternary('present', 'absent') }}"
1717 name : qemu-guest-agent
1818 when : _ostree | bool
1919
2020- name : Ensure Incus guest agent is installed
2121 ansible.builtin.dnf :
22- state : " {{common_guest_incus | bool | ternary('present', 'absent')}}"
22+ state : " {{common_guest_incus | bool | ternary('present', 'absent') }}"
2323 name : incus-agent
2424 install_weak_deps : false
2525 retries : 10
3030
3131- name : Ensure Incus guest agent is installed
3232 community.general.rpm_ostree_pkg :
33- state : " {{common_guest_incus | bool | ternary('present', 'absent')}}"
33+ state : " {{common_guest_incus | bool | ternary('present', 'absent') }}"
3434 name : incus-agent
3535 when : _ostree | bool
Original file line number Diff line number Diff line change @@ -18,10 +18,10 @@ password "{{ password }}"
1818{% endfor %}{% endif %}
1919
2020# Music collection auto update
21- auto_update "{{ mpd_auto_update | ternary("yes", "no")}}"
21+ auto_update "{{ mpd_auto_update | ternary("yes", "no") }}"
2222
2323# Zeroconf/mDNS
24- zeroconf_enabled "{{ mpd_zeroconf | ternary("yes", "no")}}"
24+ zeroconf_enabled "{{ mpd_zeroconf | ternary("yes", "no") }}"
2525
2626# Replay gain
2727replaygain "{{ mpd_replaygain }}"
You can’t perform that action at this time.
0 commit comments