This commit is contained in:
Сергей Филимонов 2024-07-17 04:40:00 +00:00
commit 37d8c735c1
4 changed files with 18 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
**/.vscode

0
ansible.cfg Normal file
View File

4
inventory Normal file
View File

@ -0,0 +1,4 @@
[gluster]
s00-gl01 ansible_host=192.168.0.21
s00-gl02 ansible_host=192.168.0.22
s00-gl03 ansible_host=192.168.0.23

13
playbooks/update.yaml Normal file
View File

@ -0,0 +1,13 @@
---
- name: UPDATE SYSTEM
hosts:
- all
become: true
serial: 1
tasks:
- name: RUN UPDATE
ansible.builtin.apt:
name: "*"
state: latest
clean: true
autoremove: true