diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-23 21:35:30 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-23 21:40:18 +0200 |
commit | 9062ea04823b0464280d0a6dcd2e67003ce0d2e1 (patch) | |
tree | f17ee1c3176a64ecda4442f7a08fc406b64a9e51 /roles/apt/tasks/main.yml | |
parent | v0.0.19 (diff) | |
download | infra-ansible-9062ea04823b0464280d0a6dcd2e67003ce0d2e1.tar.gz infra-ansible-9062ea04823b0464280d0a6dcd2e67003ce0d2e1.zip |
properly prefix things
Diffstat (limited to 'roles/apt/tasks/main.yml')
-rw-r--r-- | roles/apt/tasks/main.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/roles/apt/tasks/main.yml b/roles/apt/tasks/main.yml index 5d45adb..be4ab8e 100644 --- a/roles/apt/tasks/main.yml +++ b/roles/apt/tasks/main.yml @@ -4,7 +4,7 @@ install_recommends: false update_cache: true upgrade: dist - notify: Reboot + notify: apt_reboot - name: Reboot if necessary ansible.builtin.meta: flush_handlers @@ -14,7 +14,7 @@ ansible.builtin.apt: autoremove: true purge: true - notify: Reboot + notify: apt_reboot - name: Reboot if necessary ansible.builtin.meta: flush_handlers |