Initial commit

This commit is contained in:
Sonny Bakker 2021-10-22 22:07:35 +02:00
commit f22e5301aa
11 changed files with 58 additions and 0 deletions

18
playbook.yml Normal file
View 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'