mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-01-23 20:39:26 +00:00
10 lines
251 B
YAML
10 lines
251 B
YAML
|
- 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'
|
||
|
|