summaryrefslogtreecommitdiff
path: root/fixsources.yml
diff options
context:
space:
mode:
Diffstat (limited to 'fixsources.yml')
-rw-r--r--fixsources.yml16
1 files changed, 16 insertions, 0 deletions
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
+