This repository has been archived on 2023-12-29. You can view files and clone it, but cannot push or open issues or pull requests.
pi-ansible/roles/os_config/tasks/main.yml

21 lines
412 B
YAML
Raw Normal View History

# vim: ft=yaml.ansible
2022-12-22 19:18:27 +00:00
---
2022-12-25 18:20:23 +00:00
- name: Configure system base
2023-03-22 18:31:21 +00:00
ansible.builtin.import_tasks: base.yml
2022-12-22 19:18:27 +00:00
2022-12-26 00:39:55 +00:00
- name: Reboot if needed
2023-03-22 18:31:21 +00:00
ansible.builtin.import_tasks: reboot.yml
2022-12-26 00:39:55 +00:00
tags:
- reboot
2022-12-22 19:18:27 +00:00
- name: Configure firewall
2023-03-22 18:31:21 +00:00
ansible.builtin.import_tasks: firewall.yml
2022-12-22 19:18:27 +00:00
- name: Configure SSH
2023-03-22 18:31:21 +00:00
ansible.builtin.import_tasks: ssh.yml
2022-12-22 22:34:09 +00:00
- name: Configure disks
2023-03-22 18:31:21 +00:00
ansible.builtin.import_tasks: disks.yml
2022-12-22 22:34:09 +00:00
tags:
2022-12-25 17:12:45 +00:00
- reboot