Added new hosts Changed log output config vars Use different command for flatpak update
20 lines
374 B
YAML
20 lines
374 B
YAML
---
|
|
- name: Aktualisieren
|
|
hosts: "{{ variable_host | default('all') }}"
|
|
become: yes
|
|
vars_files: secrets.yaml
|
|
|
|
tasks:
|
|
- name: Upgrade
|
|
apt:
|
|
upgrade: yes
|
|
update_cache: true
|
|
|
|
- name: update flatpaks
|
|
shell:
|
|
cmd: flatpak update --noninteractive
|
|
#- name: Setup OpenRobertaConnectior
|
|
# import_tasks: ./tasks/openrobertaconnector.yaml
|
|
|
|
|
|
|