diff options
Diffstat (limited to 'scripts/xds-start-server.sh')
-rwxr-xr-x | scripts/xds-start-server.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/xds-start-server.sh b/scripts/xds-start-server.sh index 9a6ff05..066029a 100755 --- a/scripts/xds-start-server.sh +++ b/scripts/xds-start-server.sh @@ -14,7 +14,7 @@ [[ -f $BINDIR/xds-server ]] || { echo "Cannot find xds-server in BINDIR !"; exit 1; } # Create config.json file when needed -if [ -f "${XDS_CONFFILE}" ]; then +if [ ! -f "${XDS_CONFFILE}" ]; then mv ${XDS_CONFFILE} ${XDS_CONFFILE}.old [ ! -f "$XDS_WWWDIR/index.html" ] && XDS_WWWDIR=$BINDIR/www-xds-server [ ! -f "$XDS_WWWDIR/index.html" ] && XDS_WWWDIR=/var/www/xds-server |