From 0bc71f8c1387970dbae3f0369d1861d5d6cfc3d6 Mon Sep 17 00:00:00 2001 From: uvok cheetah Date: Sun, 11 Jun 2023 15:41:20 +0200 Subject: Update playbook to fix sources.list --- fixsources.yml | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 fixsources.yml (limited to 'fixsources.yml') diff --git a/fixsources.yml b/fixsources.yml new file mode 100644 index 0000000..e572cb6 --- /dev/null +++ b/fixsources.yml @@ -0,0 +1,16 @@ +- name: Fixup sources.list + hosts: internal + tasks: + - name: Replace ftp.uni-stuttgart.de with ftp.uni-bayreuth.de in sources.list + replace: + path: "/etc/apt/sources.list" + regexp: "ftp.uni-stuttgart.de" + replace: "ftp.uni-bayreuth.de" + backup: true + - name: Revert security mirror + replace: + path: "/etc/apt/sources.list" + regexp: "ftp.uni-bayreuth.de/debian-security" + replace: "security.debian.org/debian-security" + backup: true + -- cgit v1.2.3