1 Commits
0.1.0 ... 0.1.1

Author SHA1 Message Date
4c2de2476c use scoped name
All checks were successful
continuous-integration/drone/push Build is passing
2022-05-31 09:12:56 +02:00
2 changed files with 4 additions and 4 deletions

View File

@ -6,9 +6,9 @@
# out during our test run and that is absolutely no bueno
sshd_permit_root_login: true
sshd_port: 22
members: files/members.yml
sshd_user_accounts: files/members.yml
pre_tasks:
- name: Include resource variables
include_vars: "{{ members }}"
include_vars: "{{ sshd_user_accounts }}"
roles:
- role: autonomic.sshd

View File

@ -4,7 +4,7 @@
that: "{{ item }} is defined"
fail_msg: "You must define the '{{ item }}' variable"
with_items:
- members
- sshd_user_accounts
- name: Disable root SSH login
lineinfile:
@ -22,7 +22,7 @@
notify: Restart SSH
- name: Include resource variables
include_vars: "{{ members }}"
include_vars: "{{ sshd_user_accounts }}"
tags:
# Note(d1): we already load in converge.yml so skip here
- molecule-notest