add first playbook (apt upgrade)

This commit is contained in:
eneller
2022-03-16 09:10:21 +01:00
parent dbc18fff45
commit fc83a16503

10
aptUpgrade.yml Normal file
View File

@@ -0,0 +1,10 @@
---
- name: update apt-cache and upgrade
- hosts: oracle
become: yes
tasks:
- name: apt
apt:
update_cache: yes
upgrade: 'yes'