
git-svn-id: http://svn-archive.gnome.org/svn/NetworkManager/trunk@4266 4912f4e0-d625-0410-9fb7-b9a5a253dbdc
92 lines
1.8 KiB
Bash
Executable File
92 lines
1.8 KiB
Bash
Executable File
#! /bin/sh
|
|
### BEGIN INIT INFO
|
|
# Provides: NetworkManager
|
|
# Required-Start: $remote_fs dbus hal
|
|
# Required-Stop: $remote_fs dbus hal
|
|
# Should-Start: $syslog
|
|
# Should-Stop: $syslog
|
|
# Default-Start: 2 3 4 5
|
|
# Default-Stop: 0 1 6
|
|
# Short-Description: network connection manager
|
|
# Description: Daemon for automatically switching network
|
|
# connections to the best available connection.
|
|
### END INIT INFO
|
|
|
|
set -e
|
|
|
|
prefix=@prefix@
|
|
exec_prefix=@prefix@
|
|
sbindir=@sbindir@
|
|
localstatedir=@localstatedir@
|
|
|
|
PATH=/usr/local/sbin:/usr/local/bin:/sbin:/bin:/usr/sbin:/usr/bin
|
|
DESC="network connection manager"
|
|
NAME="NetworkManager"
|
|
|
|
DAEMON=${sbindir}/$NAME
|
|
|
|
PIDDIR=${localstatedir}/run/NetworkManager
|
|
PIDFILE=$PIDDIR/$NAME.pid
|
|
|
|
USER=root
|
|
|
|
# Gracefully exit if the package has been removed.
|
|
test -x $DAEMON || exit 0
|
|
|
|
. /lib/lsb/init-functions
|
|
|
|
test -f /etc/default/NetworkManager && . /etc/default/NetworkManager
|
|
|
|
#
|
|
# Function that starts the daemon/service.
|
|
#
|
|
d_start() {
|
|
if [ ! -d $PIDDIR ]; then
|
|
mkdir -p $PIDDIR
|
|
chown $USER:$USER $PIDDIR
|
|
fi
|
|
|
|
start-stop-daemon --start --quiet --pidfile $PIDFILE \
|
|
--oknodo --user $USER --exec $DAEMON -- $DAEMON_OPTS --pid-file $PIDFILE
|
|
|
|
}
|
|
|
|
#
|
|
# Function that stops the daemon/service.
|
|
#
|
|
d_stop() {
|
|
start-stop-daemon --stop --retry 5 --quiet --pidfile $PIDFILE \
|
|
--oknodo --user $USER --exec $DAEMON
|
|
|
|
}
|
|
|
|
|
|
case "$1" in
|
|
start)
|
|
log_daemon_msg "Starting $DESC" "$NAME"
|
|
d_start
|
|
log_end_msg $?
|
|
;;
|
|
stop)
|
|
log_daemon_msg "Stopping $DESC" "$NAME"
|
|
d_stop
|
|
log_end_msg $?
|
|
;;
|
|
restart|force-reload)
|
|
log_daemon_msg "Restarting $DESC" "$NAME"
|
|
d_stop
|
|
d_start
|
|
log_end_msg $?
|
|
;;
|
|
status)
|
|
status_of_proc -p $PIDFILE $DAEMON $NAME && exit 0 || exit $?
|
|
;;
|
|
*)
|
|
echo "Usage: $0 {start|stop|restart|force-reload|status}" >&2
|
|
exit 1
|
|
;;
|
|
esac
|
|
|
|
exit 0
|
|
|