You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
350 B
YAML
19 lines
350 B
YAML
---
|
|
- import_tasks: packages.yml
|
|
- include: sudo.yml
|
|
- include: molly-guard.yml
|
|
|
|
- include: user.yml user={{ users }}
|
|
tags: user
|
|
|
|
- name: adding message of the day
|
|
template:
|
|
dest: /etc/motd
|
|
src: "{{ motd_path }}"
|
|
owner: root
|
|
group: root
|
|
mode: 0644
|
|
when: motd_path is defined
|
|
|
|
- include: sshd.yml
|