Commit c0a3b524 authored by Julien Muchembled's avatar Julien Muchembled

playbook: new 'rina' role

parent 00c505a0
---
- apt_key:
data: "{{ lookup('file', 'key_1A716324.gpg') }}"
- apt_key:
data: "{{ lookup('file', 'key_2EB4D2F994A63987.gpg') }}"
......
---
- name: Remove legacy repositories from git.erp5.org
apt_key: id=1A716324 state=absent
when: ansible_distribution == "Debian"
when: ansible_distribution == "Debian" and not rina
- name: Remove {{ base_open_build_url }} key (and add later) on every upgrade, as expiration date is quite short (2 months).
apt_key: id=94A63987 state=absent
......
---
dependencies:
- { role: repository }
---
- apt_key: data="{{ lookup('file', 'key_1A716324.gpg') }}"
- apt_repository: repo='deb http://git.erp5.org/dist/deb ./'
- apt: update_cache=yes
- apt: name=linux-image-4.1.0-rina.1-amd64
- apt: name=librinad-dev
- apt: name=rinad
---
#- include: "{{ ansible_distribution |lower }}.yml"
- assert: { that: "ansible_distribution == 'Debian'" }
- include: debian.yml
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment