mirror of
https://github.com/roles-ansible/ansible_collection_users.git
synced 2024-08-16 10:29:50 +02:00
Change SSHD restart
CLOSE https://github.com/roles-ansible/ansible_collection_users/issues/27
This commit is contained in:
parent
4d3dcce8f9
commit
61b343b7f0
2 changed files with 4 additions and 3 deletions
|
@ -3,6 +3,6 @@
|
||||||
become: true
|
become: true
|
||||||
listen: 'systemctl restart sshd'
|
listen: 'systemctl restart sshd'
|
||||||
ansible.builtin.systemd:
|
ansible.builtin.systemd:
|
||||||
name: "{{ l3d_users__sshd_service }}"
|
name: "{{ l3d_users__sshd_service | default(sshd) }}"
|
||||||
state: restarted
|
state: restarted
|
||||||
when: l3d_users__sshd__service is defined and ansible_service_mgr == 'systemd'
|
when: nsible_service_mgr == 'systemd'
|
||||||
|
|
|
@ -5,7 +5,8 @@
|
||||||
when: submodules_versioncheck | bool
|
when: submodules_versioncheck | bool
|
||||||
|
|
||||||
- name: Load l3d_users_sshd_service variable
|
- name: Load l3d_users_sshd_service variable
|
||||||
ansible.builtin.include_vars: "{{ lookup('first_found', l3d_users_sshd__service_var_path) }}"
|
ansible.builtin.include_vars:
|
||||||
|
file: "{{ lookup('first_found', l3d_users_sshd__service_var_path) }}"
|
||||||
|
|
||||||
- name: Install openssh server
|
- name: Install openssh server
|
||||||
ansible.builtin.include_tasks:
|
ansible.builtin.include_tasks:
|
||||||
|
|
Loading…
Reference in a new issue