Closes: https://github.com/gentoo/gentoo/pull/3934
+++ /dev/null
-#%PAM-1.0
-
-account required pam_unix.so
-
-auth required pam_unix.so
-
-session required pam_limits.so
+++ /dev/null
-#!/sbin/openrc-run
-# Copyright 1999-2004 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-depend() {
- use clock logger
- need localmount
- provide cron
-}
-
-start() {
- ebegin "Starting vixie-cron"
- start-stop-daemon --start --quiet --exec /usr/sbin/cron
- eend $?
-}
-
-stop() {
- ebegin "Stopping vixie-cron"
- start-stop-daemon --stop --quiet --pidfile /var/run/cron.pid
- eend $?
-}