File tree Expand file tree Collapse file tree 3 files changed +7
-2
lines changed
Expand file tree Collapse file tree 3 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 11---
2+ jws_enable : False
23# comma separated list of wars to undeploy
34# example: jws_apps_to_remove: 'docs,ROOT,examples'
45jws_apps_to_remove : ' examples'
Original file line number Diff line number Diff line change @@ -436,6 +436,10 @@ argument_specs:
436436 type : " str"
437437 downstream :
438438 options :
439+ jws_enable :
440+ default : True
441+ description : " Wheter or not to use JWS instead of uptream"
442+ type : " bool"
439443 jws_version :
440444 default : " 6.0.0"
441445 description : " JWS version to install"
Original file line number Diff line number Diff line change 1818 - name : " Retrieve zipfiles, if missing, from RHN (if credentials provided)"
1919 ansible.builtin.include_tasks : download_from_rhn.yml
2020 when :
21+ - jws_enable is defined and jws_enable
2122 - rhn_username is defined and rhn_username | length > 0
2223 - rhn_password is defined and rhn_password | length > 0
2324
2425 - name : " Retrieve zipfiles from URL (if provided)."
2526 ansible.builtin.include_tasks : url.yml
2627 when :
27- - not rhn_username is defined
28- - not rhn_password is defined
28+ - not jws_enable is defined or not jws_enable
2929 - zipfile_url is defined
3030
3131- name : " Copy archives {{ path_to_zipfile_local }} to target nodes: {{ path_to_zipfile_on_target }}"
You can’t perform that action at this time.
0 commit comments