diff options
author | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-29 21:04:54 +0200 |
---|---|---|
committer | Egor Tensin <Egor.Tensin@gmail.com> | 2023-08-29 21:05:25 +0200 |
commit | b3e8f48d717a4fc046d91dd54df1d9b17177b3a3 (patch) | |
tree | 3b520d56107e1baa338c39dcc85a5d3f05e0043d /roles/apt_repo/handlers/main.yml | |
parent | apt_repo: always overwrite the .list file (diff) | |
download | infra-ansible-b3e8f48d717a4fc046d91dd54df1d9b17177b3a3.tar.gz infra-ansible-b3e8f48d717a4fc046d91dd54df1d9b17177b3a3.zip |
apt_repo: run apt update on key changes as well
Diffstat (limited to 'roles/apt_repo/handlers/main.yml')
-rw-r--r-- | roles/apt_repo/handlers/main.yml | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/roles/apt_repo/handlers/main.yml b/roles/apt_repo/handlers/main.yml new file mode 100644 index 0000000..384682b --- /dev/null +++ b/roles/apt_repo/handlers/main.yml @@ -0,0 +1,5 @@ +- name: Refresh apt repositories + become: true + ansible.builtin.apt: + update_cache: true + listen: apt_repo_update |