8a9903eb4c
The task files were previously renamed to .yml (commitsb2379e5,ce7ec1b) but main.yml's include_tasks directives still referenced the old .yaml names, causing role execution to fail with 'Could not find or access' errors for extra-packages.yaml, user.yaml, and ssh.yaml.
14 lines
252 B
YAML
Executable File
14 lines
252 B
YAML
Executable File
---
|
|
|
|
# Upgrade and update packages
|
|
- include_role:
|
|
name: system_maintenance
|
|
|
|
# Install extra packages
|
|
- include_tasks: extra-packages.yml
|
|
|
|
# Create a user admin account
|
|
- include_tasks: user.yml
|
|
|
|
# Harden SSH configuration
|
|
- include_tasks: ssh.yml |