[arch-commits] Commit in cronie/repos (5 files)

Christian Hesse eworm at archlinux.org
Fri Aug 17 10:01:11 UTC 2018


    Date: Friday, August 17, 2018 @ 10:01:09
  Author: eworm
Revision: 331648

archrelease: copy trunk to testing-x86_64

Added:
  cronie/repos/testing-x86_64/
  cronie/repos/testing-x86_64/PKGBUILD
    (from rev 331647, cronie/trunk/PKGBUILD)
  cronie/repos/testing-x86_64/deny
    (from rev 331647, cronie/trunk/deny)
  cronie/repos/testing-x86_64/pam.d
    (from rev 331647, cronie/trunk/pam.d)
  cronie/repos/testing-x86_64/service
    (from rev 331647, cronie/trunk/service)

----------+
 PKGBUILD |   64 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 deny     |    1 
 pam.d    |   10 +++++++++
 service  |   11 ++++++++++
 4 files changed, 86 insertions(+)

Copied: cronie/repos/testing-x86_64/PKGBUILD (from rev 331647, cronie/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2018-08-17 10:01:09 UTC (rev 331648)
@@ -0,0 +1,64 @@
+# $Id$
+# Contributor: Kaiting Chen <kaiting.chen at kiwilight.com>
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+
+pkgname='cronie'
+pkgver=1.5.2
+pkgrel=1
+pkgdesc='Daemon that runs specified programs at scheduled times and related tools'
+url='https://github.com/cronie-crond/cronie/'
+license=('custom:BSD')
+arch=('x86_64')
+depends=('pam' 'bash' 'run-parts')
+optdepends=('smtp-server: send job output via email'
+            'smtp-forwarder: forward job output to email server')
+source=("https://github.com/cronie-crond/cronie/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz"
+        'service'
+        'pam.d'
+        'deny')
+sha256sums=('370bf34641691489330e708bd4cdbd779267296a030668a12f77b7e36872fd75'
+            'ac3ff3c8a5ce1b6367b06877b4b12ff74e7f18a3c510fb9f80d6ea6b6321e3b1'
+            '00864268b491bab8c66400a4a4b4bf85f168a6e44e85676105e084940924090c'
+            'ae6e533ecdfc1bd2dd80a9e25acb0260cbe9f00c4e4abee93d552b3660f263fc')
+
+backup=('etc/cron.deny'
+        'etc/pam.d/crond'
+        'etc/cron.d/0hourly'
+        'etc/anacrontab')
+
+conflicts=('cron')
+provides=('cron')
+
+build() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+	./configure \
+		--prefix=/usr \
+		--sysconfdir=/etc \
+		--localstatedir=/var \
+		--sbindir=/usr/bin \
+		--enable-anacron \
+		--with-inotify \
+		--with-pam \
+
+	make
+}
+
+package() {
+	cd "${srcdir}/${pkgname}-${pkgver}"
+
+	make DESTDIR="${pkgdir}" install
+
+	chmod u+s "${pkgdir}"/usr/bin/crontab
+	install -d "${pkgdir}"/var/spool/{ana,}cron
+	install -d "${pkgdir}"/etc/cron.{d,hourly,daily,weekly,monthly}
+
+	install -Dm644 ../deny "${pkgdir}"/etc/cron.deny
+	install -Dm644 ../pam.d "${pkgdir}"/etc/pam.d/crond
+	install -Dm644 ../service "${pkgdir}"/usr/lib/systemd/system/cronie.service
+
+	install -Dm644 contrib/anacrontab "${pkgdir}"/etc/anacrontab
+	install -Dm644 contrib/0hourly "${pkgdir}"/etc/cron.d/0hourly
+	install -Dm755 contrib/0anacron "${pkgdir}"/etc/cron.hourly/0anacron
+
+	install -Dm644 COPYING "${pkgdir}"/usr/share/licenses/cronie/COPYING
+}

Copied: cronie/repos/testing-x86_64/deny (from rev 331647, cronie/trunk/deny)
===================================================================
--- testing-x86_64/deny	                        (rev 0)
+++ testing-x86_64/deny	2018-08-17 10:01:09 UTC (rev 331648)
@@ -0,0 +1 @@
+# without this file, only users listed in /etc/cron.allow can use crontab

Copied: cronie/repos/testing-x86_64/pam.d (from rev 331647, cronie/trunk/pam.d)
===================================================================
--- testing-x86_64/pam.d	                        (rev 0)
+++ testing-x86_64/pam.d	2018-08-17 10:01:09 UTC (rev 331648)
@@ -0,0 +1,10 @@
+auth      required    pam_unix.so
+auth      required    pam_env.so
+
+account   required    pam_access.so
+account   required    pam_unix.so
+account   required    pam_time.so
+
+session    required   pam_loginuid.so
+session   required    pam_limits.so
+session   required    pam_unix.so

Copied: cronie/repos/testing-x86_64/service (from rev 331647, cronie/trunk/service)
===================================================================
--- testing-x86_64/service	                        (rev 0)
+++ testing-x86_64/service	2018-08-17 10:01:09 UTC (rev 331648)
@@ -0,0 +1,11 @@
+[Unit]
+Description=Periodic Command Scheduler
+
+[Service]
+ExecStart=/usr/bin/crond -n
+ExecReload=/usr/bin/kill -HUP $MAINPID
+KillMode=process
+Restart=always
+
+[Install]
+WantedBy=multi-user.target



More information about the arch-commits mailing list