First commit
This commit is contained in:
commit
be6ea984b0
12
choux.yml
Normal file
12
choux.yml
Normal 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
|
||||
|
||||
|
16
tasks/arch_base_packages.yml
Normal file
16
tasks/arch_base_packages.yml
Normal 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
2
tasks/users.yml
Normal file
@ -0,0 +1,2 @@
|
||||
---
|
||||
|
10
vars/common.yml
Normal file
10
vars/common.yml
Normal file
@ -0,0 +1,10 @@
|
||||
---
|
||||
|
||||
users:
|
||||
- { username: 'lafrite', passworld: ''}
|
||||
- { username: 'waha', passworld: ''}
|
||||
|
||||
deploy_users:
|
||||
- waha
|
||||
|
||||
minimal: false
|
Loading…
Reference in New Issue
Block a user