mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 13:27:09 +02:00
http://wicd.sourceforge.net/ Wicd is an open source wired and wireless network manager for Linux
37 lines
678 B
Plaintext
Executable File
37 lines
678 B
Plaintext
Executable File
#!/sbin/openrc-run
|
|
## Copyright 1999-2006 Gentoo Foundation
|
|
# Distributed under the terms of the GNU General Public License v2
|
|
|
|
WICD_DAEMON=/usr/sbin/wicd
|
|
WICD_PIDFILE=/var/run/wicd/wicd.pid
|
|
|
|
depend() {
|
|
need dbus
|
|
after hald
|
|
provide net
|
|
}
|
|
|
|
start() {
|
|
ebegin "Starting wicd daemon"
|
|
[ -f /etc/wicd/wired-settings.conf ] && sed -i 's/^\[\]$//' /etc/wicd/wired-settings.conf
|
|
"${WICD_DAEMON}" >/dev/null 2>&1
|
|
eend $?
|
|
}
|
|
|
|
stop() {
|
|
ebegin "Stopping wicd daemon and closing connections"
|
|
"${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
|
|
}
|