summaryrefslogtreecommitdiffstats
path: root/jjb/fuel
diff options
context:
space:
mode:
authorAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-09-08 19:50:25 +0200
committerAlexandru Avadanii <Alexandru.Avadanii@enea.com>2017-09-08 19:50:25 +0200
commit020a0af48b63f73de6f751021e20a97c7d8ec757 (patch)
treeb0d111655d4f524f37336fba9885a243578875a6 /jjb/fuel
parentc897c28c442e9f32e760d6d575df109b448b2313 (diff)
fuel-deploy.sh: Add missing quotes in 'sudo -E'
Previous commit extended the SUDO variable to include '-E', but failed to properly quote the full `sudo -E` string, resulting in "command not found" errors. Change-Id: I266aa5259f09c3605e1c5a7ad165397ce83be0bb Signed-off-by: Alexandru Avadanii <Alexandru.Avadanii@enea.com>
Diffstat (limited to 'jjb/fuel')
-rwxr-xr-xjjb/fuel/fuel-deploy.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/jjb/fuel/fuel-deploy.sh b/jjb/fuel/fuel-deploy.sh
index 129f7532c..6525c7ccb 100755
--- a/jjb/fuel/fuel-deploy.sh
+++ b/jjb/fuel/fuel-deploy.sh
@@ -43,7 +43,7 @@ POD_NAME=${NODE_NAME/*-}
LAB_CONFIG_URL=${LAB_CONFIG_URL:-'ssh://jenkins-ericsson@gerrit.opnfv.org:29418/securedlab'}
# Fuel requires deploy script to be ran with sudo, Armband does not
-SUDO=sudo -E
+SUDO='sudo -E'
if [ "${PROJECT}" = 'fuel' ]; then
# Fuel does not use any POD-specific configuration for virtual deploys
if [[ "${NODE_NAME}" =~ "virtual" ]]; then