Files
bpfire/src/initscripts/init.d/hostapd
Arne Fitzenreiter aced02fac6 Change hostapd default WPA passw to "IPFire-2.x" because 6 chars are to short
Create /var/run/hostapd folder at hostapd initskript
2008-08-05 17:02:23 +02:00

43 lines
1.3 KiB
Bash

#!/bin/sh
. /etc/sysconfig/rc
. ${rc_functions}
case "${1}" in
start)
boot_mesg -n "Starting hostapd... "
mkdir -p /var/run/hostapd
# enable wlan module of collectd
sed -i -e "s|#LoadPlugin wireless|LoadPlugin wireless|g" /etc/collectd.conf
/usr/bin/wlanconfig ath0 destroy
/usr/bin/wlanconfig blue0 create wlandev wifi0 wlanmode ap
/usr/sbin/iwconfig blue0 channel 05
/usr/bin/hostapd -P /var/run/hostapd /etc/hostapd.conf </dev/tty12 >/dev/tty12 2>&1 &
evaluate_retval
;;
stop)
boot_mesg "Stopping hostapd..."
# Just make sure when going down the first time blue0 nw values are ignored
grep -v 'NAME="blue0"' /etc/udev/rules.d/30-persistent-network.rules > /tmp/30-persistent-network.rules
mv /tmp/30-persistent-network.rules /etc/udev/rules.d/30-persistent-network.rules
/usr/bin/wlanconfig blue0 destroy
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