basic
This commit is contained in:
parent
8709a8506d
commit
b6b0f1d42e
2 changed files with 14 additions and 0 deletions
14
debian12-basic.yml
Normal file
14
debian12-basic.yml
Normal 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
0
debian12-docker.yml
Normal file
Loading…
Reference in a new issue