collection of ansible roles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

15 lines
418 B

---
- name: Download theme modules from github
git:
repo: "https://github.com/Icinga/icingaweb2-theme-{{ item.name }}.git"
dest: "{{ theme_modules_dir }}/{{ item.name }}"
update: no
version: "{{ item.version }}"
loop: "{{ theme_modules }}"
ignore_errors: yes
tags: minimal
- name: enable modules
shell: "icingacli module enable {{ item.name }}"
loop: "{{ theme_modules }}"
tags: minimal