blob: a6502fa941c2478c1ba2cd688775fff1fc4fb831 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/sbin/runscript
# Copyright 1999-2010 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/atop/files/atop.rc,v 1.2 2010/07/18 22:19:26 vapier Exp $
start() {
ebegin "Starting atop"
start-stop-daemon --start --quiet --exec /etc/atop/atop.daily
eend $?
}
stop() {
ebegin "Stopping atop"
start-stop-daemon --stop --exec /usr/bin/atop --pidfile /var/run/atop.pid
eend $?
}
|