Ansible/node-configuration/tasks/main.yml

19 lines
365 B
YAML
Raw Normal View History

2022-05-25 23:24:56 +00:00
---
# tasks file for node-configuration
- name: Setup user configuration
import_tasks: ./users.yml
become: yes
- 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