14 lines
253 B
YAML
14 lines
253 B
YAML
|
---
|
||
|
- name: Configure and harden SSH
|
||
|
import_tasks: ./ssh.yml
|
||
|
become: yes
|
||
|
|
||
|
- name: Miscellaneous operations
|
||
|
import_tasks: ./misc.yml
|
||
|
become: yes
|
||
|
|
||
|
- name: Install OpenMediaVault
|
||
|
import_tasks: ./omv.yaml
|
||
|
become: yes
|
||
|
when: is_nas|bool == true
|