Browse Source

Fix quotes in interface parameter

Ask Bjørn Hansen 13 years ago
parent
commit
2c57af9b47
1 changed files with 1 additions and 1 deletions
  1. 1 1
      service/run

+ 1 - 1
service/run

@@ -8,7 +8,7 @@ INTERFACE=""
 if [ -e env/IP ]; then
 if [ -e env/IP ]; then
   IP=`head -1 env/IP`
   IP=`head -1 env/IP`
   if [ ! -z "$IP" ]; then
   if [ ! -z "$IP" ]; then
-    INTERFACE="--interface='$IP'"
+    INTERFACE="--interface=$IP"
   fi
   fi
 fi
 fi