From d68e4cfd04f0cc2f967653bdb99e738922cda4ee Mon Sep 17 00:00:00 2001 From: nrb <freifunk@nicoboehr.de> Date: Sat, 9 Oct 2021 21:47:22 +0200 Subject: [PATCH] remove_salt: remove the repo file The repo is now 404 which might prevent us from deleting it. Hence just delete the file. --- remove_salt.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/remove_salt.yml b/remove_salt.yml index 05fc2dc..f237af2 100644 --- a/remove_salt.yml +++ b/remove_salt.yml @@ -1,6 +1,10 @@ --- - hosts: all tasks: + - name: Remove saltstack repo file + file: + path: /etc/apt/sources.list.d/saltstack.list + state: absent - name: Remove saltstack repository apt_repository: repo: "{{ item }}" -- GitLab