21 lines
423 B
YAML
21 lines
423 B
YAML
|
# NibTech::Host::Tasks::main
|
||
|
# This role does host setup
|
||
|
# Role repository:
|
||
|
---
|
||
|
|
||
|
- name: Setup Users
|
||
|
ansible.builtin.include_tasks: users.yml
|
||
|
tags: ['users']
|
||
|
|
||
|
- name: Setup SSH
|
||
|
ansible.builtin.include_tasks: ssh.yml
|
||
|
tags: ['ssh']
|
||
|
|
||
|
- name: Setup Packages
|
||
|
ansible.builtin.include_tasks: packages.yml
|
||
|
tags: ['packages']
|
||
|
|
||
|
- name: Perform System Update
|
||
|
ansible.builtin.include_tasks: update.yml
|
||
|
tags: ['update']
|