12 lines
496 B
YAML
12 lines
496 B
YAML
#SPDX-License-Identifier: MIT-0
|
|
---
|
|
# tasks file for bootstrap
|
|
- name: Populate system with groups and user accounts
|
|
ansible.builtin.import_tasks:
|
|
file: "create_users@{{ ansible_facts['system'].lowercase() }}.yml"
|
|
- name: Provide SSL certificate files
|
|
ansible.builtin.import_tasks:
|
|
file: "configure_ssl@{{ ansible_facts['system'].lowercase() }}.yml"
|
|
- name: Configure SSH for root
|
|
ansible.builtin.import_tasks:
|
|
file: "configure_ssh@{{ ansible_facts['system'].lowercase() }}.yml" |