home · contact · privacy
760588372b19eea4224ddfdcfef3fed2cdc47d4c
[config] / ansible / tasks / set_repos.yml
1 ---
2
3 - name: APT - use stretch repo 
4   apt_repository:
5     repo: deb http://ftp.debian.org/debian/ stretch main contrib non-free
6     state: present
7
8 - name: APT - use stretch security updates repo
9   apt_repository:
10     repo: deb http://security.debian.org/ stretch/updates main contrib non-free
11     state: present
12
13 - name: APT - use stretch-updates repo
14   apt_repository:
15     repo: deb http://ftp.debian.org/debian/ stretch-updates main contrib non-free
16     state: present
17
18 - name: APT - use stretch-backports repo
19   apt_repository:
20     repo: deb http://ftp.debian.org/debian stretch-backports main contrib non-free
21     state: present