32 lines
567 B
YAML
32 lines
567 B
YAML
---
|
|
- import_tasks: install-basicpackages.yml
|
|
|
|
- import_tasks: create-admin-user.yml
|
|
|
|
- import_tasks: set-motd.yml
|
|
tags: motd
|
|
|
|
- import_tasks: set-keyboardlayout.yml
|
|
|
|
- import_tasks: install-openssh.yml
|
|
tags: ssh
|
|
|
|
- import_tasks: configure-ssh.yml
|
|
tags: ssh
|
|
|
|
- import_tasks: add-ssh-keys.yml
|
|
tags: ssh
|
|
|
|
- import_tasks: setup-bashrc.yml
|
|
tags: bashrc
|
|
|
|
- import_tasks: configure-sysctl.yml
|
|
tags: sysctl
|
|
|
|
- import_role:
|
|
name: docker
|
|
when: not skip_docker | default(false)
|
|
|
|
- import_role:
|
|
name: monitoring
|
|
when: not skip_monitoring | default(false) |