15 lines
470 B
YAML
15 lines
470 B
YAML
|
# pre test file
|
||
|
---
|
||
|
- name: enable non-free
|
||
|
apt_repository:
|
||
|
repo: "{{ item.type }} {{ item.url }} {{ item.component }}"
|
||
|
filename: non-free
|
||
|
with_items:
|
||
|
- type: deb
|
||
|
url: "http://ftp.nl.debian.org/debian/ {{ ansible_distribution_release }}"
|
||
|
component: contrib non-free
|
||
|
- type: deb-src
|
||
|
url: "http://ftp.nl.debian.org/debian/ {{ ansible_distribution_release }}"
|
||
|
component: contrib non-free
|
||
|
when: ansible_distribution == 'Debian'
|