mirror of
https://git.lapiole.org/dani/ansible-roles.git
synced 2025-04-25 22:53:23 +02:00
18 lines
456 B
YAML
18 lines
456 B
YAML
![]() |
---
|
||
|
|
||
|
- name: Write plugin versions
|
||
|
shell: echo {{ glpi_plugins[item].version }} > {{ glpi_root_dir }}/meta/glpi_plugin_{{ item }}_ansible_version
|
||
|
when:
|
||
|
- item not in glpi_installed_plugins
|
||
|
- glpi_plugins[item] is defined
|
||
|
with_items: "{{ glpi_plugins_to_install }}"
|
||
|
changed_when: False
|
||
|
tags: glpi
|
||
|
|
||
|
- import_tasks: ../includes/webapps_post.yml
|
||
|
vars:
|
||
|
- root_dir: "{{ glpi_root_dir }}"
|
||
|
- version: "{{ glpi_version }}"
|
||
|
tags: glpi
|
||
|
|