--- - 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