1
0
Fork 0
mirror of https://github.com/roles-ansible/ansible_role_base.git synced 2024-08-16 14:29:50 +02:00
ansible_role_base/tasks/sources.yml

40 lines
1 KiB
YAML
Raw Normal View History

2019-07-15 23:09:48 +02:00
---
2020-08-28 10:41:48 +02:00
- name: Install requirements to add packages
become: true
2019-07-15 23:47:30 +02:00
apt:
package:
- debian-goodies
- apt-dater-host
- apt-transport-https
state: present
2020-08-28 10:41:48 +02:00
- name: add eth zurich apt (main)
2019-07-15 23:09:48 +02:00
become: true
apt_repository:
repo: deb https://debian.ethz.ch/debian/ {{ ansible_distribution_release }} main
state: present
2020-08-28 14:10:39 +02:00
mode: 0644
2019-07-15 23:09:48 +02:00
when:
2020-08-28 10:41:48 +02:00
- not base__pkg_non_free_firmware | bool
- not base__pkg_contrib | bool
2019-07-15 23:09:48 +02:00
2020-08-28 10:41:48 +02:00
- name: add eth zurich apt (main non-free)
2019-07-20 22:38:49 +02:00
become: true
apt_repository:
repo: deb-src https://debian.ethz.ch/debian/ {{ ansible_distribution_release }} main non-free
state: present
2020-08-28 14:10:39 +02:00
mode: 0644
2019-07-20 22:38:49 +02:00
when:
2020-08-28 10:41:48 +02:00
- base__pkg_non_free_firmware | bool
- not base__pkg_contrib | bool
2019-07-29 08:57:58 +02:00
2020-08-28 10:41:48 +02:00
- name: add eth zurich apt (main contrib non-free)
2019-07-29 08:57:58 +02:00
become: true
apt_repository:
repo: deb-src https://debian.ethz.ch/debian/ {{ ansible_distribution_release }} main contrib non-free
state: present
2020-08-28 14:10:39 +02:00
mode: 0644
2019-07-29 08:57:58 +02:00
when:
2020-08-28 10:41:48 +02:00
- base__pkg_non_free_firmware | bool
- base__pkg_contrib | bool