Fix conditional check of string variable

This commit is contained in:
Daniel Werz 2026-03-03 16:15:03 +01:00
parent d34a2d78e8
commit ec38dcec5e
2 changed files with 3 additions and 3 deletions

View file

@ -98,7 +98,7 @@
export superusers
password_pbkdf2 root {{ grub_pwd }}
notify: Run update-grub
when: grub_pwd | bool | default(false)
when: grub_pwd is defined and grub_pwd is truthy
- name: Allow booting grub menu entries
ansible.builtin.lineinfile:

View file

@ -5,14 +5,14 @@
mode: '0644'
content: >
{{ apt_conf }}
when: apt_conf | bool | default(false)
when: apt_conf is defined and apt_conf is truthy
- name: Set NTP server
ansible.builtin.lineinfile:
path: /etc/systemd/timesyncd.conf
insertafter: '^#NTP='
line: NTP={{ ntp_serv }}
when: ntp_serv | bool | default(false)
when: ntp_serv is defined and ntp_serv is truthy
- name: Add proposed-updates repository
ansible.builtin.apt_repository: