Gentoo Archives: gentoo-commits

From: David Seifert <soap@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] repo/gentoo:master commit in: sys-process/vixie-cron/files/
Date: Tue, 14 Feb 2017 21:37:54
Message-Id: 1487108137.6a3a73f8485460576648ae9c5499d4defcd2576c.soap@gentoo
1 commit: 6a3a73f8485460576648ae9c5499d4defcd2576c
2 Author: Michael Mair-Keimberger (asterix) <m.mairkeimberger <AT> gmail <DOT> com>
3 AuthorDate: Sun Feb 12 16:03:45 2017 +0000
4 Commit: David Seifert <soap <AT> gentoo <DOT> org>
5 CommitDate: Tue Feb 14 21:35:37 2017 +0000
6 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a3a73f8
7
8 sys-process/vixie-cron: remove unused files
9
10 Closes: https://github.com/gentoo/gentoo/pull/3934
11
12 sys-process/vixie-cron/files/cron.pam.d | 7 -------
13 sys-process/vixie-cron/files/vixie-cron.rc6 | 22 ----------------------
14 2 files changed, 29 deletions(-)
15
16 diff --git a/sys-process/vixie-cron/files/cron.pam.d b/sys-process/vixie-cron/files/cron.pam.d
17 deleted file mode 100644
18 index e09d6f8d83..0000000000
19 --- a/sys-process/vixie-cron/files/cron.pam.d
20 +++ /dev/null
21 @@ -1,7 +0,0 @@
22 -#%PAM-1.0
23 -
24 -account required pam_unix.so
25 -
26 -auth required pam_unix.so
27 -
28 -session required pam_limits.so
29
30 diff --git a/sys-process/vixie-cron/files/vixie-cron.rc6 b/sys-process/vixie-cron/files/vixie-cron.rc6
31 deleted file mode 100644
32 index 9dfa7dc60b..0000000000
33 --- a/sys-process/vixie-cron/files/vixie-cron.rc6
34 +++ /dev/null
35 @@ -1,22 +0,0 @@
36 -#!/sbin/openrc-run
37 -# Copyright 1999-2004 Gentoo Foundation
38 -# Distributed under the terms of the GNU General Public License v2
39 -# $Id$
40 -
41 -depend() {
42 - use clock logger
43 - need localmount
44 - provide cron
45 -}
46 -
47 -start() {
48 - ebegin "Starting vixie-cron"
49 - start-stop-daemon --start --quiet --exec /usr/sbin/cron
50 - eend $?
51 -}
52 -
53 -stop() {
54 - ebegin "Stopping vixie-cron"
55 - start-stop-daemon --stop --quiet --pidfile /var/run/cron.pid
56 - eend $?
57 -}