From d09f348d28f8b11108e6443ed9271384f5cacc9d Mon Sep 17 00:00:00 2001 From: Derek Higgins Date: Mon, 30 Sep 2013 11:20:38 +0100 Subject: [PATCH] Save CLOUD_ADMIN_PASSWORD's in the toci_env file Change-Id: I80843b8ed5bb9fce659c31f5ee0e689e549af8e7 --- toci_functions.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/toci_functions.sh b/toci_functions.sh index 58deea868..e26d7bb78 100644 --- a/toci_functions.sh +++ b/toci_functions.sh @@ -58,8 +58,8 @@ get_state_from_host(){ # On Exit write relevant toci env to a rc file get_tocienv(){ - declare | grep -e "^PATH=" -e "^http.*proxy" -e "^TOCI_" -e '^DIB_' | sed -e 's/^/export /g' > $TOCI_WORKING_DIR/toci_env - # Some IP we sont want to proxy + declare | grep -e "^PATH=" -e "^http.*proxy" -e "^TOCI_" -e '^DIB_' -e 'CLOUD_ADMIN_PASSWORD' | sed -e 's/^/export /g' > $TOCI_WORKING_DIR/toci_env + # Some IP we don't want to proxy echo 'export no_proxy=$($TOCI_WORKING_DIR/tripleo-incubator/scripts/get-vm-ip seed),192.0.2.2,192.0.2.5,192.0.2.6,192.0.2.7,192.0.2.8' >> $TOCI_WORKING_DIR/toci_env }