dir and touch in wrong order

This commit is contained in:
Louis Abel 2022-07-08 23:42:23 -07:00
parent fff2b39a9b
commit f2d1edfb3a
Signed by: label
GPG Key ID: 6735C0E1BD65D048
1 changed files with 9 additions and 9 deletions

View File

@ -25,6 +25,15 @@
when:
- ansible_distribution_major_version == '8'
- name: Ensure sshd_config.d dir exists
ansible.builtin.file:
state: directory
path: "/etc/ssh/sshd_config.d"
owner: root
group: root
mode: '0700'
notify: restart_sshd
- name: Ensure an empty file exists
ansible.builtin.template:
state: touch
@ -36,15 +45,6 @@
when:
- ansible_distribution_major_version == '8'
- name: Ensure sshd_config.d dir exists
ansible.builtin.file:
state: directory
path: "/etc/ssh/sshd_config.d"
owner: root
group: root
mode: '0700'
notify: restart_sshd
- name: Default Modular Configuration
when:
- (ansible_facts['distribution'] == 'Fedora') or