blob: bce7f2012eb3f8a6543837b928ba54c1f6ffc4a3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#!/sbin/runscript
# Copyright 1999-2003 Gentoo Technologies, Inc.
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/app-admin/gps/files/rgpsp,v 1.2 2003/02/14 22:07:48 vapier Exp $
depend() {
need net
}
start() {
ebegin "Starting Remote Graphical Process Statistics daemon"
start-stop-daemon --start --quiet --exec /usr/bin/rgpsp
eend $?
}
stop() {
ebegin "Stopping Remote Graphical Process Statistics daemon"
start-stop-daemon --stop --quiet --name rgpsp
eend $?
}
|