mirror of
https://github.com/iiab/iiab.git
synced 2025-02-15 04:32:11 +00:00
15 lines
376 B
YAML
15 lines
376 B
YAML
|
- name: Download the latest menu repo
|
||
|
git: repo={{ iiab_menu_url }}
|
||
|
dest={{ iiab_menu_dir }}
|
||
|
depth=1
|
||
|
force=yes
|
||
|
# ignore_errors: yes
|
||
|
when: not {{ use_cache }} and not {{ no_network }} and iiab_menu_install
|
||
|
tags:
|
||
|
- download2
|
||
|
|
||
|
- name: copy the menu date the the active doc-root
|
||
|
command: "{{ iiab_menu_dir }}/cp-menus"
|
||
|
when: iiab_menu_install
|
||
|
|