You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
453 B
YAML
21 lines
453 B
YAML
5 years ago
|
---
|
||
|
|
||
|
- name: Register debian unstable for apt
|
||
|
copy:
|
||
|
dest: "/etc/apt/sources.list.d/unstable.list"
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: "u=rw,g=r,o=r"
|
||
|
content: "deb http://deb.debian.org/debian/ unstable main"
|
||
|
|
||
|
- name: Restrict unstable for apt
|
||
|
copy:
|
||
|
dest: "/etc/apt/preferences.d/unstable"
|
||
|
owner: root
|
||
|
group: root
|
||
|
mode: "u=rw,g=r,o=r"
|
||
|
content: |
|
||
|
Package: *
|
||
|
Pin: release a=unstable
|
||
|
Pin-Priority: 90
|