First commit

This commit is contained in:
Bertrand Benjamin 2018-08-22 20:42:52 +02:00
commit be6ea984b0
4 changed files with 40 additions and 0 deletions

12
choux.yml Normal file
View File

@ -0,0 +1,12 @@
---
- hosts: localhost
connection: local
vars_files:
- vars/common.yml
task:
- include: tasks/arch_base_packages.yml
- include: tasks/users.yml

View File

@ -0,0 +1,16 @@
---
- name: Update and upgrade all packages
pacman:
update_cache: yes
upgrade: yes
- name: Install zsh
pacman:
name: zsh
state: present
- name: Install vim
pacman:
name: vim
state: present

2
tasks/users.yml Normal file
View File

@ -0,0 +1,2 @@
---

10
vars/common.yml Normal file
View File

@ -0,0 +1,10 @@
---
users:
- { username: 'lafrite', passworld: ''}
- { username: 'waha', passworld: ''}
deploy_users:
- waha
minimal: false