]> git.ipfire.org Git - ipfire-2.x.git/commitdiff
litte copy & paste error
authorManiacikarus <maniacikarus@ipfire.org>
Sat, 16 Aug 2008 11:30:48 +0000 (13:30 +0200)
committerManiacikarus <maniacikarus@ipfire.org>
Sat, 16 Aug 2008 11:30:48 +0000 (13:30 +0200)
src/initscripts/init.d/hostapd

index 5fdb7057b213b64819af0a741cbc0ddd824fb8e1..f5d4ecfbc67795cd744480c48ad9d50afc7aee42 100644 (file)
@@ -7,46 +7,6 @@ TXPOWER="auto"
 INTERFACE="blue0"
 eval $(/usr/local/bin/readhash /var/ipfire/wlanpap/settings)
 
-case "${1}" in
-        start)
-               boot_mesg "Starting hostapd... "
-               mkdir -p /var/run/hostapd
-               # enable wlan module of collectd
-               sed -i -e "s|#LoadPlugin wireless|LoadPlugin wireless|g" /etc/collectd.conf
-
-               # Set Atheros Card to master mode
-                /usr/bin/wlanconfig $INTERFACE destroy > /dev/null
-                /usr/bin/wlanconfig $INTERFACE create wlandev wifi0 wlanmode ap > /dev/null
-
-               # Set other cards to master mode
-               #/usr/sbin/iwconfig blue0 mode master
-
-               if [ "$(/usr/sbin/iwconfig $INTERFACE | /bin/grep "Mode:Master")" == "" ]; then
-                   boot_mesg "Error! Can't set wlan master mode"
-                   echo_failure;
-                   exit 1;
-               else
-                   /usr/sbin/iwconfig $INTERFACE channel $CHANNEL
-                   /usr/sbin/iwconfig $INTERFACE channel $TXPOWER
-                   /usr/bin/hostapd -P /var/run/hostapd /etc/hostapd.conf </dev/tty12 >/dev/tty12 2>&1 &
-                   evaluate_retval
-               fi
-                ;;
-
-        stop)
-               boot_mesg "Stopping hostapd..."
-
-               # Set Atheros Card to Managed mode
-                /usr/bin/wlanconfig $INTERFACE destroy > /dev/null
-                /usr/bin/wlanconfig #!/bin/sh
-. /etc/sysconfig/rc
-. ${rc_functions}
-
-CHANNEL="05"
-TXPOWER="auto"
-INTERFACE="blue0"
-eval $(/usr/local/bin/readhash /var/ipfire/wlanpap/settings)
-
 case "${1}" in
         start)
                boot_mesg "Starting hostapd... "
@@ -102,27 +62,3 @@ case "${1}" in
                 exit 1
                 ;;
 esac
- create wlandev wifi0 wlanmode sta > /dev/null
-
-               # Set other cards to master mode
-               #/usr/sbin/iwconfig blue0 mode Managed
-
-                killproc /usr/bin/hostapd
-                evaluate_retval
-                ;;
-
-        restart)
-                ${0} stop
-                sleep 1
-                ${0} start
-                ;;
-
-        status)
-                statusproc /usr/bin/hostapd
-                ;;
-
-        *)
-                echo "Usage: ${0} {start|stop|restart|status}"
-                exit 1
-                ;;
-esac