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

33 lines
611 B
YAML
Raw Normal View History

# vim: ft=yaml.ansible
2022-12-22 19:18:27 +00:00
---
- name: Configure user accounts
ansible.builtin.import_tasks: users.yml
tags:
- users
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
2023-05-28 15:58:12 +00:00
tags:
- firewall
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
2023-05-28 15:58:12 +00:00
tags:
- ssh
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
2023-05-28 16:46:01 +00:00
- name: Flush handlers
ansible.builtin.meta: flush_handlers