blob: e572cb6348383afb27c45b0926a830416a6839d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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
|