Files
ansible-semaphore/apt2-update.yml
Joachim Hummel d249700ee3 File added
2023-10-25 09:04:00 +00:00

13 lines
238 B
YAML

---
- hosts: all
vars:
ansible_host_key_checking: false ##If you get an error about hosts not trusted
become: true
tasks:
- name: Update and upgrade apt packages
apt:
update_cache: yes
upgrade: yes