Fix missing quotes in init.d/piratebox_alt

This commit is contained in:
Nicola Lamacchia 2014-11-05 11:08:51 +01:00
parent 2f2f8014f8
commit 1a1a3b6826

View file

@ -93,7 +93,7 @@ case "$1" in
iw $PHY_IF interface add $INTERFACE type managed
fi
if [ "$PROBE_INTERFACE" = yes ] ; then
if [ "$PROBE_INTERFACE" = "yes" ] ; then
echo " Probe wlan"
#Setting up WLAN Interface
piratebox_setup_wlan.sh $CONF probe
@ -109,7 +109,7 @@ case "$1" in
echo $?
fi
if [ "$DO_IFCONFIG" = yes ] ; then
if [ "$DO_IFCONFIG" = "yes" ] ; then
echo " Setting up wlan"
#Setting up WLAN Interface
piratebox_setup_wlan.sh $CONF start
@ -222,7 +222,7 @@ case "$1" in
echo $?
if [ "$DO_IFCONFIG" = yes ] ; then
if [ "$DO_IFCONFIG" = "yes" ] ; then
piratebox_setup_wlan.sh $CONF stop
fi