Browse Source

Fix bashism in init script (Closes: #530191).

Raphael Geissert 14 years ago
parent
commit
0cc88132b8
1 changed files with 1 additions and 1 deletions
  1. 1 1
      debian/init.d

+ 1 - 1
debian/init.d

@@ -36,7 +36,7 @@ if [ -f $DEFAULT ] ; then
 	. $DEFAULT
 fi
 
-if [ "$INTERFACE" == "" ] ; then
+if [ "$INTERFACE" = "" ] ; then
     echo "Not starting $NAME"
     echo "Edit $DEFAULT and define the INTERFACE variable"
     exit 0