Initial commit
This commit is contained in:
commit
f22e5301aa
11 changed files with 58 additions and 0 deletions
18
playbook.yml
Normal file
18
playbook.yml
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
- hosts: localhost
|
||||
pre_tasks:
|
||||
- name: install shared packages
|
||||
become: true
|
||||
pacman:
|
||||
name: '{{ packages }}'
|
||||
- roles:
|
||||
- common
|
||||
tasks:
|
||||
# TODO add ssh setup
|
||||
# TODO add nginx setup
|
||||
- import_tasks: 'tasks/setup.yml'
|
||||
- import_tasks: 'tasks/wireguard.yml'
|
||||
- import_tasks: 'tasks/radicale.yml'
|
||||
- import_tasks: 'tasks/syncthing.yml'
|
||||
- import_tasks: 'tasks/transmission.yml'
|
||||
vars_files:
|
||||
- 'vars.yml'
|
||||
Loading…
Add table
Add a link
Reference in a new issue