Skip to content

Commit e66915b

Browse files
committed
Fix Ansible formatting issues
1 parent cc25fff commit e66915b

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

roles/common/tasks/guest.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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
@@ -13,13 +13,13 @@
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
@@ -30,6 +30,6 @@
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

roles/mpd/templates/mpd.conf.j2

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
2727
replaygain "{{ mpd_replaygain }}"

0 commit comments

Comments
 (0)