Alon Bar-Lev has uploaded a new change for review. Change subject: packaging: setup: support space within environment ......................................................................
packaging: setup: support space within environment Change-Id: I02e542bca5f77dcaf6aa284717903e1aad451600 Signed-off-by: Alon Bar-Lev <[email protected]> --- M packaging/setup/bin/ovirt-engine-setup 1 file changed, 6 insertions(+), 6 deletions(-) git pull ssh://gerrit.ovirt.org:29418/ovirt-engine refs/changes/34/16234/1 diff --git a/packaging/setup/bin/ovirt-engine-setup b/packaging/setup/bin/ovirt-engine-setup index f66e831..f249cc4 100755 --- a/packaging/setup/bin/ovirt-engine-setup +++ b/packaging/setup/bin/ovirt-engine-setup @@ -43,7 +43,7 @@ script="$(readlink -f "$0")" scriptdir="$(dirname "${script}")" . "${scriptdir}/ovirt-engine-setup.env" -baseenv="APPEND:BASE/pluginPath=str:${scriptdir}/../plugins APPEND:BASE/pluginGroups=str:ovirt-engine-common:ovirt-engine-setup" +baseenv="\"APPEND:BASE/pluginPath=str:${scriptdir}/../plugins\" APPEND:BASE/pluginGroups=str:ovirt-engine-common:ovirt-engine-setup" otopienv="" environment="" @@ -58,19 +58,19 @@ otopienv="${v}" ;; --log=*) - environment="${environment} CORE/logFileName=str:${v}" + environment="${environment} \"CORE/logFileName=str:${v}\"" ;; --config=*) - environment="${environment} APPEND:CORE/configFileName=str:${v}" + environment="${environment} \"APPEND:CORE/configFileName=str:${v}\"" ;; --config-append=*) - environment="${environment} APPEND:CORE/configFileAppend=str:${v}" + environment="${environment} \"APPEND:CORE/configFileAppend=str:${v}\"" ;; --generate-answer=*) - environment="${environment} OVESETUP_CORE/answerFile=str:${v}" + environment="${environment} \"OVESETUP_CORE/answerFile=str:${v}\"" ;; --jboss-home=*) - environment="${environment} OVESETUP_CONFIG/jbossHome=str:${v}" + environment="${environment} \"OVESETUP_CONFIG/jbossHome=str:${v}\"" ;; --help) usage -- To view, visit http://gerrit.ovirt.org/16234 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I02e542bca5f77dcaf6aa284717903e1aad451600 Gerrit-PatchSet: 1 Gerrit-Project: ovirt-engine Gerrit-Branch: master Gerrit-Owner: Alon Bar-Lev <[email protected]> _______________________________________________ Engine-patches mailing list [email protected] http://lists.ovirt.org/mailman/listinfo/engine-patches
