72 lines
953 B
YAML
72 lines
953 B
YAML
---
|
|
- name: Perform common tasks
|
|
hosts: nas
|
|
become: yes
|
|
roles:
|
|
- base
|
|
- common
|
|
tags: base
|
|
|
|
- name: Configure BTRFS RAID
|
|
hosts: nas
|
|
become: yes
|
|
roles:
|
|
- raid
|
|
tags: raid
|
|
|
|
- name: Set up Samba
|
|
hosts: nas
|
|
become: yes
|
|
roles:
|
|
- samba
|
|
tags: samba
|
|
|
|
- name: Set up Jellyfin
|
|
hosts: nas
|
|
become: yes
|
|
roles:
|
|
- jellyfin
|
|
tags: jellyfin
|
|
|
|
- name: Set up Caddy
|
|
hosts: nas
|
|
become: yes
|
|
roles:
|
|
- caddy
|
|
tags: caddy
|
|
|
|
- name: Set up photo sync using Rclone
|
|
hosts: nas
|
|
become: yes
|
|
roles:
|
|
- rclone
|
|
tags: rclone
|
|
|
|
- name: Install Woodpecker agent
|
|
hosts: nas
|
|
become: yes
|
|
roles:
|
|
- woodpecker
|
|
tags: woodpecker
|
|
|
|
- name: Install Lander
|
|
hosts: nas
|
|
become: yes
|
|
roles:
|
|
- lander
|
|
tags: lander
|
|
|
|
- name: Install Restic REST server
|
|
hosts: nas
|
|
become: yes
|
|
roles:
|
|
- restic-rest
|
|
tags: restic-rest
|
|
|
|
- name: Install Restic
|
|
hosts: nas
|
|
become: yes
|
|
roles:
|
|
- restic
|
|
tags: restic
|