summaryrefslogtreecommitdiff
path: root/dcron
diff options
context:
space:
mode:
authorErich Eckner <git@eckner.net>2017-08-10 08:50:16 +0200
committerErich Eckner <git@eckner.net>2017-08-10 08:50:16 +0200
commitb04a60e514b65fea9131eefd1d5b101a6e05e278 (patch)
tree5f46483d7b9965f140e2bc89bc94008d69eac31d /dcron
parent356c188bc2e8eb15272dfd0f455f70b23f31ac77 (diff)
downloadarchlinuxewe.git.save-b04a60e514b65fea9131eefd1d5b101a6e05e278.tar.xz
dcron neu
Diffstat (limited to 'dcron')
-rw-r--r--dcron/PKGBUILD53
-rw-r--r--dcron/service11
2 files changed, 64 insertions, 0 deletions
diff --git a/dcron/PKGBUILD b/dcron/PKGBUILD
new file mode 100644
index 00000000..4530f6d0
--- /dev/null
+++ b/dcron/PKGBUILD
@@ -0,0 +1,53 @@
+# Maintainer: Erich Eckner <arch at eckner dot net>
+# Contributor: gt <AT> notfoss.com
+# Contributor: Bartłomiej Piotrowski <nospam@bpiotrowski.pl>
+# Contributor: Paul Mattal <paul.archlinux.org>
+
+pkgname="dcron"
+pkgver="4.5"
+pkgrel="8"
+pkgdesc="dillon's lightweight cron daemon"
+arch=("i686" "x86_64" "armv6h" "armv7h")
+license=("GPL")
+url="http://www.jimpryor.net/linux/dcron.html"
+backup=("var/spool/cron/root" "etc/conf.d/crond")
+depends=("bash")
+optdepends=("msmtp-mta: sending cron job output via email")
+provides=("cron")
+conflicts=("cron")
+source=("http://www.jimpryor.net/linux/releases/${pkgname}-${pkgver}.tar.gz"
+ "service")
+md5sums=("078833f3281f96944fc30392b1888326"
+ "2eefc422db24bf2ac38e3a16292ccdc4")
+
+build() {
+ cd "$srcdir/${pkgname}-${pkgver}"
+
+ # fix paths to point to /usr/bin
+ sed -i 's=/usr/sbin/sendmail=/usr/bin/sendmail=g' defs.h
+ sed -i 's=/usr/sbin/run-cron=/usr/bin/run-cron=g' extra/root.crontab
+
+ # by default, any member of group "users" can edit their own crontab
+ make \
+ PREFIX=/usr \
+ SBINDIR=/usr/bin \
+ CRONTAB_GROUP=users \
+ CRONTABS=/var/spool/cron \
+ CRONSTAMPS=/var/spool/cronstamps
+}
+
+package() {
+ cd "$srcdir/${pkgname}-${pkgver}"
+ make DESTDIR="$pkgdir" install
+
+ # install standard configuration and scripts
+ install -d -m755 "$pkgdir"/etc/cron.{hourly,daily,weekly,monthly}
+
+ install -D -m755 extra/run-cron "$pkgdir"/usr/bin/run-cron
+ install -D -m0600 extra/root.crontab "$pkgdir"/var/spool/cron/root
+ install -D -m0644 extra/crond.conf "$pkgdir"/etc/conf.d/crond
+ install -D -m644 extra/crontab.vim "$pkgdir"/usr/share/vim/vimfiles/ftplugin/crontab.vim
+ sed -i -e 's=/var/spool/cron/cronstamps=/var/spool/cronstamps=' extra/prune-cronstamps
+ install -D -m755 extra/prune-cronstamps "$pkgdir"/etc/cron.d/prune-cronstamps
+ install -Dm644 "$srcdir"/service "$pkgdir"/usr/lib/systemd/system/dcron.service
+}
diff --git a/dcron/service b/dcron/service
new file mode 100644
index 00000000..703f3207
--- /dev/null
+++ b/dcron/service
@@ -0,0 +1,11 @@
+[Unit]
+Description=Periodic Command Scheduler
+
+[Service]
+Type=forking
+EnvironmentFile=/etc/conf.d/crond
+ExecStart=/usr/bin/crond $CROND_ARGS
+Restart=always
+
+[Install]
+WantedBy=multi-user.target