forked from ISTI-ansible-roles/ansible-roles
library/roles/ubuntugis/tasks/main.yml: Give the possibility to remove the ubuntugis repo.
This commit is contained in:
parent
1d69338f13
commit
91dc2da301
|
@ -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
|
||||
|
||||
|
|
Loading…
Reference in New Issue