ansible base config
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user