library/roles/ubuntugis/tasks/main.yml: Give the possibility to remove the ubuntugis repo.

This commit is contained in:
Andrea Dell'Amico 2017-05-12 19:33:57 +02:00
parent 1d69338f13
commit 91dc2da301
1 changed files with 16 additions and 6 deletions

View File

@ -1,9 +1,19 @@
---
- name: Add the ansible ppa for ansible
apt_repository: repo='{{ ubuntugis_repo }}' update_cache=yes
tags: ubuntugis
- block:
- name: Add the ubuntugis repository
apt_repository: repo='{{ ubuntugis_repo }}' update_cache=yes
- name: Install the ansible package
apt: pkg={{ item }} state={{ ubuntugis_pkg_state }} update_cache=yes cache_valid_time=1800
with_items: '{{ ubuntugis_packages }}'
- name: Install the ansible package
apt: pkg={{ item }} state={{ ubuntugis_pkg_state }} update_cache=yes cache_valid_time=1800
with_items: '{{ ubuntugis_packages }}'
tags: ubuntugis
when: ubuntugis_repo_install
- block:
- name: Remove the ubuntugis repository
apt_repository: repo='{{ ubuntugis_repo }}' update_cache=yes state=absent
tags: ubuntugis
when: not ubuntugis_repo_install