10 lines
251 B
YAML
Raw Permalink Normal View History

2024-12-11 10:07:16 +01:00
- name: Install timeshift packages
ansible.builtin.apt:
name:
- timeshift
update_cache: yes
become: "{{ false if inventory_hostname == 'nas.home.lan' else true }}"
ignore_errors: true
when: inventory_hostname != 'nas.home.lan'