diff options
| author | Ahmed Abdelhalim <[email protected]> | 2026-01-24 00:33:50 +0100 |
|---|---|---|
| committer | Ahmed Abdelhalim <[email protected]> | 2026-01-24 01:03:37 +0100 |
| commit | d7b3463a79a50dc81d28d530c5212a1749efbb15 (patch) | |
| tree | 198f009230b71c23275400826a2f60e50f01360a /roles/ssh/handlers | |
| parent | 4b9d5e3318d4de8df862f3794c6bc85eba6f8942 (diff) | |
Fix ansible 2.20.1 deprecation warning about ansible_vars
Diffstat (limited to 'roles/ssh/handlers')
| -rw-r--r-- | roles/ssh/handlers/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/ssh/handlers/main.yml b/roles/ssh/handlers/main.yml index f8760549..d9e025d0 100644 --- a/roles/ssh/handlers/main.yml +++ b/roles/ssh/handlers/main.yml @@ -3,11 +3,11 @@ become: true ansible.builtin.systemd_service: daemon_reload: true - when: not ansible_is_chroot + when: not ansible_facts['is_chroot'] - name: "Restart ssh" become: true ansible.builtin.systemd_service: name: "{{ ssh_service }}" state: "restarted" - when: not ansible_is_chroot + when: not ansible_facts['is_chroot'] |
