mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2025-07-01 07:28:33 +02:00
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 0s
10 lines
311 B
YAML
Executable File
10 lines
311 B
YAML
Executable File
- name: Upgrade
|
|
become: "{{ false if inventory_hostname == 'nas.home.lan' else true }}"
|
|
block:
|
|
- name: Upgrade the full OS
|
|
ansible.builtin.apt:
|
|
upgrade: yes
|
|
- name: Upgrade flatpack
|
|
ansible.builtin.command: flatpak update -y
|
|
when: inventory_hostname == 'morefine.home.lan'
|