2015-05-28 11:32:57 +02:00
|
|
|
---
|
|
|
|
- name: apt key for the internal precise-backports repository
|
|
|
|
apt_key: url=http://ppa.research-infrastructures.eu/precise-backports/keys/precise-backports.asc state=present
|
|
|
|
when: is_precise
|
2018-08-09 18:48:09 +02:00
|
|
|
tags: apt
|
2015-05-28 11:32:57 +02:00
|
|
|
|
|
|
|
- name: Install the precise backports apt repository
|
2018-08-09 18:48:09 +02:00
|
|
|
apt_repository: repo='{{ item }}' update_cache=yes
|
2015-05-28 11:32:57 +02:00
|
|
|
with_items:
|
|
|
|
- deb http://ppa.research-infrastructures.eu/precise-backports precise main
|
|
|
|
when: is_precise
|
2018-08-09 18:48:09 +02:00
|
|
|
tags: apt
|