ansible base config

This commit is contained in:
root
2022-06-10 20:43:10 +00:00
commit 2e03f3fc8a
4 changed files with 81 additions and 0 deletions
+29
View File
@@ -0,0 +1,29 @@
---
- hosts: test
become: no
tasks:
- name: update apt
apt:
update_cache: yes
- name: install docker.io
apt:
name: docker.io
state: present
- name: install docker-compose
apt:
name: docker-compose
state: present
- name: install git
apt:
name: git
state: present
- name: install vim-nux
apt:
name: vim-nox
state: present