This commit is contained in:
Kekskurse 2023-07-21 02:23:22 +02:00
parent 8709a8506d
commit b6b0f1d42e
Signed by: kekskurse
GPG Key ID: 728ACCB59341E7E4
2 changed files with 14 additions and 0 deletions

14
debian12-basic.yml Normal file
View File

@ -0,0 +1,14 @@
---
- name: Update web servers
hosts: all
remote_user: root
tasks:
- name: Update all packages to their latest version
ansible.builtin.apt:
name: "*"
state: latest
update_cache: yes
- name: Install a list of packages
ansible.builtin.apt:
pkg:
- htop

0
debian12-docker.yml Normal file
View File