Commit 4c5ff208 authored by Julien Muchembled's avatar Julien Muchembled

Compatibility with old version of ansible

parent 795e9dd2
---
- name: Check if RINA is already installed
stat: path=/usr/bin/ipcm
register: ipcm
- name: Remove legacy repositories from git.erp5.org
apt_key: id=1A716324 state=absent
when: ansible_distribution == "Debian" and not (rina or "/usr/bin/ipcm"|is_file)
when: ansible_distribution == "Debian" and not (rina or ipcm.isreg)
- 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
......
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