mirror of
https://github.com/gryf/wicd.git
synced 2026-01-06 22:04:19 +01:00
40 lines
706 B
Plaintext
Executable File
40 lines
706 B
Plaintext
Executable File
#!/sbin/runscript
|
|
# Copyright 1999-2006 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
opts="start stop restart"
|
|
|
|
WICD_DAEMON=%SBIN%wicd
|
|
WICD_PIDFILE=%PIDFILE%
|
|
|
|
depend() {
|
|
need dbus
|
|
after hald
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting wicd daemon"
|
|
# fix Gentoo bug 296197
|
|
sed -i 's/^\[\]$//' /etc/wicd/wired-settings.conf
|
|
"${WICD_DAEMON}" >/dev/null 2>&1
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping wicd daemon and closing connections"
|
|
# can't use ssd because it needs the -k option
|
|
"${WICD_DAEMON}" -k >/dev/null 2>&1
|
|
eend $?
|
|
}
|
|
|
|
force_kill() {
|
|
ebegin "Stopping wicd daemon"
|
|
start-stop-daemon --stop --pidfile "${WICD_PIDFILE}"
|
|
eend $?
|
|
}
|
|
|
|
restart() {
|
|
force_kill
|
|
start
|
|
}
|