summaryrefslogtreecommitdiff
path: root/pcr/openrc-misc/fcron.init.3
diff options
context:
space:
mode:
Diffstat (limited to 'pcr/openrc-misc/fcron.init.3')
-rw-r--r--pcr/openrc-misc/fcron.init.358
1 files changed, 0 insertions, 58 deletions
diff --git a/pcr/openrc-misc/fcron.init.3 b/pcr/openrc-misc/fcron.init.3
deleted file mode 100644
index 09c05c6d0..000000000
--- a/pcr/openrc-misc/fcron.init.3
+++ /dev/null
@@ -1,58 +0,0 @@
-#!/sbin/runscript
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-process/fcron/files/fcron.init.3,v 1.1 2012/08/29 17:38:40 flameeyes Exp $
-
-FCRON_INSTANCE=${SVCNAME##*.}
-
-configfile() {
- if [ -n "${FCRON_INSTANCE}" -a "${SVCNAME}" != "fcron" ]; then
- echo /etc/fcron/fcron.${FCRON_INSTANCE}.conf
- else
- echo /etc/fcron/fcron.conf
- fi
-}
-
-getconfig() {
- # if there is no configuration file return the default value
- if ! [ -f $(configfile) ]; then
- echo $2
- return 0
- fi
-
- sed -n -e 's:^$1[ \t]*=[ \t]*::p' $(configfile)
-}
-
-depend() {
- config $(configfile)
-
- use logger
- need clock hostname
- # provide the cron service if we are the main instance
- [ "${SVCNAME}" = "fcron" ] && provide cron
-}
-
-command="/usr/libexec/fcron"
-command_args="-c $(configfile)"
-pidfile=$(getconfig pidfile /var/run/fcron.pid)
-fcrontabs=$(getconfig fcrontabs /var/spool/fcron)
-
-extra_started_commands="reload"
-
-start_pre() {
- if [ ! -e $(configfile) ]; then
- eerror "You will need to create $(configfile) first"
- eerror "There is a sample in /etc/fcron"
- return 1
- fi
-
- if [ ! -d ${fcrontabs} ]; then
- ebegin "Creating missing spooldir ${fcrontabs}"
- ${command} --newspooldir ${fcrontabs}
- eend $?
- fi
-}
-
-reload() {
- kill -HUP `cat ${pidfile}`
-}