Added basic template for teh debian11 VM.

This commit is contained in:
2023-05-16 09:52:47 +03:00
commit d0cb4a0647
4 changed files with 83 additions and 0 deletions
+22
View File
@@ -0,0 +1,22 @@
---
- hosts: all
become: yes
tasks:
- name: Update apt cache
apt:
update_cache: yes
- name: Upgrade all packages
apt:
upgrade: dist
autoremove: yes
autoclean: yes
- name: install neofetch
apt:
name:
- neofetch
- name: install docker
apt:
name:
- docker
- docker-compose