diff options
author | Mike Frysinger <vapier@gentoo.org> | 2004-03-06 04:09:34 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2004-03-06 04:09:34 +0000 |
commit | 1aafd45d52c252acaadfd12caaef2768b8ff6430 (patch) | |
tree | 304d7039d11720080459bf4469c8ed70821ae1bb /sys-apps/at/files/atd.rc6 | |
parent | we license under gpl2, not gpl2 or later (diff) | |
download | historical-1aafd45d52c252acaadfd12caaef2768b8ff6430.tar.gz historical-1aafd45d52c252acaadfd12caaef2768b8ff6430.tar.bz2 historical-1aafd45d52c252acaadfd12caaef2768b8ff6430.zip |
we license under gpl2, not gpl2 or later
Diffstat (limited to 'sys-apps/at/files/atd.rc6')
-rw-r--r-- | sys-apps/at/files/atd.rc6 | 23 |
1 files changed, 11 insertions, 12 deletions
diff --git a/sys-apps/at/files/atd.rc6 b/sys-apps/at/files/atd.rc6 index 7aec98366743..2b0b7bdaded7 100644 --- a/sys-apps/at/files/atd.rc6 +++ b/sys-apps/at/files/atd.rc6 @@ -1,22 +1,21 @@ #!/sbin/runscript -# Copyright 1999-2003 Gentoo Technologies, Inc. -# Distributed under the terms of the GNU General Public License, v2 or later -# $Header: /var/cvsroot/gentoo-x86/sys-apps/at/files/atd.rc6,v 1.10 2003/02/14 23:12:04 vapier Exp $ +# Copyright 1999-2004 Gentoo Technologies, Inc. +# Distributed under the terms of the GNU General Public License v2 +# $Header: /var/cvsroot/gentoo-x86/sys-apps/at/files/atd.rc6,v 1.11 2004/03/06 04:06:01 vapier Exp $ depend() { - need clock logger + need clock logger } start() { - ebegin "Starting atd" - start-stop-daemon --start --quiet --pidfile /var/run/atd.pid \ - --startas /usr/sbin/atd - eend $? + ebegin "Starting atd" + start-stop-daemon --start --quiet --pidfile /var/run/atd.pid \ + --startas /usr/sbin/atd + eend $? } stop() { - ebegin "Shutting down atd" - start-stop-daemon --stop --quiet --pidfile /var/run/atd.pid - eend $? + ebegin "Shutting down atd" + start-stop-daemon --stop --quiet --pidfile /var/run/atd.pid + eend $? } - |