18 lines
558 B
YAML
18 lines
558 B
YAML
---
|
|
- name: Create and set up Ansible user and environment
|
|
ansible.builtin.include_tasks: prepare_ansible_user.yaml
|
|
|
|
- name: Improve SSH configuration
|
|
ansible.builtin.include_tasks: harden_ssh.yaml
|
|
|
|
- name: Install basic utils
|
|
ansible.builtin.include_tasks: install_basic_utils.yaml
|
|
|
|
- name: Remove unnecessary packages
|
|
ansible.builtin.include_tasks: remove_packages.yaml
|
|
|
|
- name: Create and set up a new user
|
|
ansible.builtin.include_tasks: create_new_user.yaml
|
|
|
|
- name: Set locale and time
|
|
ansible.builtin.include_tasks: set_locale_and_time.yaml |