21 lines
645 B
YAML
21 lines
645 B
YAML
---
|
|
- name: Deploy and set up an LXC container in Proxmox
|
|
hosts: all
|
|
remote_user: ansible
|
|
|
|
vars_files:
|
|
../inventory/group_vars/all/secrets.yaml
|
|
|
|
roles:
|
|
# Check the Internet connection
|
|
# Check free disk space
|
|
- ../roles/common_healthcheck
|
|
# Ensure that all the required packages are installed
|
|
- ../roles/base_system
|
|
# Update the system
|
|
- ../roles/update_system
|
|
# Harden SSH - we must be sure that the last version of ssh configs are distributed
|
|
- ../roles/harden_ssh
|
|
# Update configs - omz, nvim, ranger and so on. Distribute the last version of those configs
|
|
- ../roles/update_configs
|