1
0
Fork 0
mirror of https://github.com/iiab/iiab.git synced 2025-02-13 11:42:08 +00:00

kalite - setup.yml needs kalite_install boolean

to suppress setup.yml when kalite_install is set to False
This commit is contained in:
Jerry Vonau 2019-12-29 18:32:24 -06:00
parent b6cc93c7d1
commit 2888640fb4

View file

@ -29,10 +29,10 @@
when: not test_kalite_installed.stat.exists when: not test_kalite_installed.stat.exists
- include_tasks: setup-f18.yml - include_tasks: setup-f18.yml
when: not test_kalite_installed.stat.exists and is_F18 when: not test_kalite_installed.stat.exists and is_F18 and kalite_install
- include_tasks: setup.yml - include_tasks: setup.yml
when: not test_kalite_installed.stat.exists and not is_F18 when: not test_kalite_installed.stat.exists and not is_F18 and kalite_install
- include_tasks: enable.yml - include_tasks: enable.yml
when: kalite_install or kalite_installed is defined when: kalite_install or kalite_installed is defined