dff5415b9c
- Add logrotate config file (rh #404181) - Add new LSB initscript header to initscript with correct deps (rh #244029) - Move other runtime arguments to /etc/sysconfig/wpa_supplicant - Start after messagebus service (rh #385191) - Fix initscript 'condrestart' command (rh #217281)
91 lines
1.8 KiB
Bash
91 lines
1.8 KiB
Bash
#!/bin/bash
|
|
#
|
|
# wpa_supplicant
|
|
#
|
|
# chkconfig: - 23 88
|
|
# description: wpa_supplicant is a WPA Supplicant for Linux, BSD and \
|
|
# Windows with support for WPA and WPA2 (IEEE 802.11i / RSN). Supplicant \
|
|
# is the IEEE 802.1X/WPA component that is used in the client stations. \
|
|
# It implements key negotiation with a WPA Authenticator and it controls \
|
|
# the roaming and IEEE 802.11 authentication/association of the wlan driver.
|
|
# processname: wpa_supplicant
|
|
# config: /etc/wpa_supplicant/wpa_supplicant.conf
|
|
#
|
|
### BEGIN INIT INFO
|
|
# Provides: wpa_supplicant
|
|
# Required-Start: $local_fs $messagebus
|
|
# Required-Stop: $local_fs $messagebus
|
|
# Default-Start: 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: start and stop wpa_supplicant
|
|
# Description: wpa_supplicant is a tool for connecting to wireless networks
|
|
### END INIT INFO
|
|
|
|
# Source function library.
|
|
. /etc/rc.d/init.d/functions
|
|
|
|
# Source networking configuration.
|
|
. /etc/sysconfig/network
|
|
|
|
exec="/usr/sbin/wpa_supplicant"
|
|
prog=$(basename $exec)
|
|
conf="/etc/wpa_supplicant/wpa_supplicant.conf"
|
|
lockfile=/var/lock/subsys/$prog
|
|
|
|
[ -e /etc/sysconfig/$prog ] && . /etc/sysconfig/$prog
|
|
|
|
start() {
|
|
echo -n $"Starting $prog: $conf, $INTERFACES, $DRIVERS"
|
|
daemon $prog -c $conf $INTERFACES $DRIVERS -B $OTHER_ARGS
|
|
retval=$?
|
|
echo
|
|
[ $retval -eq 0 ] && touch $lockfile
|
|
return $retval
|
|
}
|
|
|
|
stop() {
|
|
echo -n $"Stopping $prog: "
|
|
killproc $prog
|
|
retval=$?
|
|
echo
|
|
[ $retval -eq 0 ] && rm -f $lockfile
|
|
return $retval
|
|
}
|
|
|
|
restart() {
|
|
stop
|
|
start
|
|
}
|
|
|
|
reload() {
|
|
restart
|
|
}
|
|
|
|
force_reload() {
|
|
restart
|
|
}
|
|
|
|
fdr_status() {
|
|
status $prog
|
|
}
|
|
|
|
|
|
case "$1" in
|
|
start|stop|restart|reload)
|
|
$1
|
|
;;
|
|
force-reload)
|
|
force_reload
|
|
;;
|
|
status)
|
|
fdr_status
|
|
;;
|
|
condrestart|try-restart)
|
|
[ -f $lockfile ] && restart
|
|
;;
|
|
*)
|
|
echo $"Usage: $0 {start|stop|status|restart|try-restart|reload|force-reload}"
|
|
exit 1
|
|
esac
|
|
|