diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2021-08-09 13:27:49 +0300 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2021-08-09 13:27:49 +0300 |
commit | 3f9051b964f7e1d40184dc2edbfba53906d2a77b (patch) | |
tree | c47e3631a3fc6538c30bd4c8343ae13d238f552b /roles/apt/tasks | |
parent | flush_handlers where needed (diff) | |
download | maintenance-3f9051b964f7e1d40184dc2edbfba53906d2a77b.tar.gz maintenance-3f9051b964f7e1d40184dc2edbfba53906d2a77b.zip |
join handlers using listen: topic
Diffstat (limited to 'roles/apt/tasks')
-rw-r--r-- | roles/apt/tasks/main.yml | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/roles/apt/tasks/main.yml b/roles/apt/tasks/main.yml index f00d4fd..6fd9e3e 100644 --- a/roles/apt/tasks/main.yml +++ b/roles/apt/tasks/main.yml @@ -11,9 +11,7 @@ - name: Upgrade packages apt: upgrade: full - notify: - - Reboot - - Wait for connectivity + notify: reboot - name: Flush handlers meta: flush_handlers @@ -22,9 +20,7 @@ apt: autoremove: yes purge: yes - notify: - - Reboot - - Wait for connectivity + notify: reboot - name: Flush handlers meta: flush_handlers |