Can now install VS Code. Download tars from github. Uses a vault for storing sudo passwords.
19 lines
330 B
YAML
19 lines
330 B
YAML
---
|
|
- name: Aktualisieren
|
|
hosts: werkstatt
|
|
become: yes
|
|
|
|
tasks:
|
|
- name: Upgrade
|
|
apt:
|
|
upgrade: yes
|
|
update_cache: true
|
|
|
|
- name: Software Aktualisieren (Flatpak)
|
|
community.general.flatpak:
|
|
state: latest
|
|
- name: Setup OpenRobertaConnectior
|
|
import_tasks: ./tasks/openrobertaconnector.yaml
|
|
|
|
|
|
|