From 7ac7f410ad3def56b89fbe59bbcd32ed3b1e199b Mon Sep 17 00:00:00 2001 From: Natanael Copa Date: Wed, 24 Feb 2010 09:13:30 +0000 Subject: main/atop: moved from testing --- main/atop/atop.initd | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 main/atop/atop.initd (limited to 'main/atop/atop.initd') diff --git a/main/atop/atop.initd b/main/atop/atop.initd new file mode 100644 index 0000000000..6d471c2721 --- /dev/null +++ b/main/atop/atop.initd @@ -0,0 +1,21 @@ +#!/sbin/runscript +# Copyright 1999-2005 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.1 2005/06/14 23:01:10 vapier Exp $ + +_daily=/etc/periodic/daily/atop +start(){ + ebegin "Starting atop" + if [ -f "$_daily" ] ; then + start-stop-daemon --start --quiet --exec "$_daily" + eend $? + else + eend 1 "/etc/cron.d/atop doesnt exist!" + fi +} + +stop(){ + ebegin "Stopping atop" + start-stop-daemon --stop --pidfile /var/run/atop.pid + eend $? +} -- cgit v1.2.3