The infrascience ppa repository is now optional and disabled by default.
This commit is contained in:
parent
47788be177
commit
ab3d32a54d
|
@ -121,6 +121,9 @@ default_security_limits:
|
|||
# - ':msg, contains, "icmp6_send: no reply to icmp error" ~'
|
||||
# - ':msg, contains, "[PYTHON] Can\'t call the metric handler function for" ~'
|
||||
|
||||
#
|
||||
infrascience_internal_ppa: False
|
||||
|
||||
#
|
||||
# debian/ubuntu distributions controllers
|
||||
#
|
||||
|
|
|
@ -47,6 +47,7 @@
|
|||
when:
|
||||
- is_ubuntu
|
||||
- egi_image is not defined or not egi_image
|
||||
- infrascience_internal_ppa
|
||||
ignore_errors: True
|
||||
tags: packages
|
||||
|
||||
|
@ -58,7 +59,9 @@
|
|||
|
||||
- name: setup system apt repository
|
||||
apt_repository: repo='deb [arch=amd64] http://ppa.research-infrastructures.eu/system stable main' update_cache=yes
|
||||
when: is_ubuntu
|
||||
when:
|
||||
- is_ubuntu
|
||||
- infrascience_internal_ppa
|
||||
ignore_errors: True
|
||||
tags: packages
|
||||
|
||||
|
@ -70,7 +73,9 @@
|
|||
|
||||
- name: setup system apt repository for specific distributions
|
||||
apt_repository: repo='deb [arch=amd64] http://ppa.research-infrastructures.eu/system {{ ansible_distribution_release }} main' update_cache=yes
|
||||
when: is_trusty
|
||||
when:
|
||||
- is_trusty
|
||||
- infrascience_internal_ppa
|
||||
ignore_errors: True
|
||||
tags: packages
|
||||
|
||||
|
|
Loading…
Reference in New Issue