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

Christian Hesse eworm at gemini.archlinux.org
Mon Apr 25 12:54:00 UTC 2022


    Date: Monday, April 25, 2022 @ 12:54:00
  Author: eworm
Revision: 443948

archrelease: copy trunk to testing-x86_64

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

----------------+
 80-cronie.hook |    9 +++++++
 PKGBUILD       |   65 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 deny           |    1 
 pam.d          |   10 ++++++++
 service        |   11 +++++++++
 5 files changed, 96 insertions(+)

Copied: cronie/repos/testing-x86_64/80-cronie.hook (from rev 443947, cronie/trunk/80-cronie.hook)
===================================================================
--- testing-x86_64/80-cronie.hook	                        (rev 0)
+++ testing-x86_64/80-cronie.hook	2022-04-25 12:54:00 UTC (rev 443948)
@@ -0,0 +1,9 @@
+[Trigger]
+Operation = Upgrade
+Type = Package
+Target = glibc
+
+[Action]
+Description = Restarting cronie for libc upgrade...
+When = PostTransaction
+Exec = /usr/bin/systemctl try-restart cronie.service

Copied: cronie/repos/testing-x86_64/PKGBUILD (from rev 443947, cronie/trunk/PKGBUILD)
===================================================================
--- testing-x86_64/PKGBUILD	                        (rev 0)
+++ testing-x86_64/PKGBUILD	2022-04-25 12:54:00 UTC (rev 443948)
@@ -0,0 +1,65 @@
+# Contributor: Kaiting Chen <kaiting.chen at kiwilight.com>
+# Maintainer: Gaetan Bisson <bisson at archlinux.org>
+
+pkgname='cronie'
+pkgver=1.6.1
+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')
+conflicts=('cron')
+provides=('cron')
+options=('debug')
+source=("https://github.com/cronie-crond/cronie/releases/download/${pkgname}-${pkgver}/${pkgname}-${pkgver}.tar.gz"
+        '80-cronie.hook'
+        'service'
+        'pam.d'
+        'deny')
+sha256sums=('2cd0f0dd1680e6b9c39bf1e3a5e7ad6df76aa940de1ee90a453633aa59984e62'
+            'f85e9a68bf3bf446f8a6167f068371c06afffe11ca71935d8ee5487b38b2c9db'
+            'ac3ff3c8a5ce1b6367b06877b4b12ff74e7f18a3c510fb9f80d6ea6b6321e3b1'
+            '00864268b491bab8c66400a4a4b4bf85f168a6e44e85676105e084940924090c'
+            'ae6e533ecdfc1bd2dd80a9e25acb0260cbe9f00c4e4abee93d552b3660f263fc')
+backup=('etc/cron.deny'
+        'etc/pam.d/crond'
+        'etc/cron.d/0hourly'
+        'etc/anacrontab')
+
+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 -Dm0644 ../deny "${pkgdir}"/etc/cron.deny
+	install -Dm0644 ../pam.d "${pkgdir}"/etc/pam.d/crond
+	install -Dm0644 ../service "${pkgdir}"/usr/lib/systemd/system/cronie.service
+	install -Dm0644 ../80-cronie.hook "${pkgdir}"/usr/share/libalpm/hooks/80-cronie.hook
+
+	install -Dm0644 contrib/anacrontab "${pkgdir}"/etc/anacrontab
+	install -Dm0644 contrib/0hourly "${pkgdir}"/etc/cron.d/0hourly
+	install -Dm0755 contrib/0anacron "${pkgdir}"/etc/cron.hourly/0anacron
+
+	install -Dm0644 COPYING "${pkgdir}"/usr/share/licenses/cronie/COPYING
+}

Copied: cronie/repos/testing-x86_64/deny (from rev 443947, cronie/trunk/deny)
===================================================================
--- testing-x86_64/deny	                        (rev 0)
+++ testing-x86_64/deny	2022-04-25 12:54:00 UTC (rev 443948)
@@ -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 443947, cronie/trunk/pam.d)
===================================================================
--- testing-x86_64/pam.d	                        (rev 0)
+++ testing-x86_64/pam.d	2022-04-25 12:54:00 UTC (rev 443948)
@@ -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 443947, cronie/trunk/service)
===================================================================
--- testing-x86_64/service	                        (rev 0)
+++ testing-x86_64/service	2022-04-25 12:54:00 UTC (rev 443948)
@@ -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