ansible-roles/apt/tasks/main.yml

27 lines
522 B
YAML
Raw Normal View History

---
2017-08-23 01:49:27 +02:00
- fail:
msg: only compatible with Debian >= 8
when:
2017-08-23 01:49:27 +02:00
- ansible_distribution != "Debian" or ansible_distribution_major_version | version_compare('8', '<')
tags:
- apt
2017-06-07 09:53:42 +02:00
- name: Install basics repositories
include: basics.yml
when: apt_install_basics
tags:
- apt
- name: Install APT Backports repository
2017-01-10 10:18:42 +01:00
include: backports.yml
when: apt_install_backports
tags:
- apt
2017-05-21 11:00:46 +02:00
- name: Install Evolix Public APT repository
include: evolix_public.yml
when: apt_install_evolix_public
tags:
- apt