Merge "Modify detection of iso_gen_utility"

This commit is contained in:
Jenkins 2016-01-14 20:23:20 +00:00 committed by Gerrit Code Review
commit 7d3e34d181

View File

@ -69,7 +69,7 @@
- name: "If mkisofs is not available, fallback to genisoimage"
set_fact:
iso_gen_utility: "genisoimage"
when: test_mkisofs.rc != 0
when: ('genisoimage' in test_mkisofs.stderr) or test_mkisofs.rc != 0
- name: "Check if genisoimage is available"
shell: genisoimage --help >>/dev/null
ignore_errors: yes