From: wu.zhihui Date: Tue, 8 Nov 2016 06:32:59 +0000 (+0800) Subject: Move a process file ips.log to /home/opnfv/qtip/ X-Git-Tag: danube.1.0~196^2 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F41%2F24041%2F2;p=qtip.git Move a process file ips.log to /home/opnfv/qtip/ It is better to put process files to /home/opnfv/qtip/. Change-Id: I3ed5d13fdf1ce65303f1005ed2284c9ba2271207 Signed-off-by: wu.zhihui --- diff --git a/func/env_setup.py b/func/env_setup.py index 6027f904..e9f9cd2a 100644 --- a/func/env_setup.py +++ b/func/env_setup.py @@ -113,8 +113,7 @@ class Env_setup: (installer_type, installer_ip) logger.info(cmd) os.system(cmd) - home = expanduser("~") - with open(home + "/ips.log", "r") as file: + with open(expanduser('~') + "/qtip/ips.log", "r") as file: data = file.read() if data: ips.extend(data.rstrip('\n').split('\n')) diff --git a/scripts/fetch_compute_ips.sh b/scripts/fetch_compute_ips.sh index ebe817a6..4bdc9a48 100755 --- a/scripts/fetch_compute_ips.sh +++ b/scripts/fetch_compute_ips.sh @@ -110,7 +110,7 @@ if [ -z "$IPS" ]; then else echo "-------- all compute node ips: --------" touch $HOME/ips.log - echo "$IPS" > $HOME/ips.log + echo "$IPS" > $HOME/qtip/ips.log echo $IPS fi