blob: 3fc0e711c6357d41e5f234c9320d7f3c3f9e53fb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#!/sbin/runscript
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/sys-process/at/files/atd.rc7,v 1.2 2014/01/31 12:00:40 polynomial-c Exp $
pidfile="/run/atd.pid"
command="/usr/sbin/atd"
command_args="${ATD_OPTS}"
start_stop_daemon_args="--pidfile ${pidfile}"
depend() {
need clock logger
}
|