diff options
author | Dermot <dermot_bradley@yahoo.com> | 2020-06-02 21:25:26 +0100 |
---|---|---|
committer | Leo <thinkabit.ukim@gmail.com> | 2020-06-02 21:46:45 +0000 |
commit | 847628a3f8908cac4998613ee3ed16353e3cd82d (patch) | |
tree | 862324f72c0d8d58101d5c560803c3e12d13bded | |
parent | c9a2429a9043bba852b835b4eaf9ad62ec23abbe (diff) | |
download | aports-847628a3f8908cac4998613ee3ed16353e3cd82d.tar.gz aports-847628a3f8908cac4998613ee3ed16353e3cd82d.tar.bz2 aports-847628a3f8908cac4998613ee3ed16353e3cd82d.tar.xz |
community/fcron: remove path reference for run-parts from crontab as binary moved.
MR !7759 changed the run-parts package so its binary is now in /bin
rather than /usr/bin. There is no need for the fcron's crontab to
reference the path of the binary at all so rather than correct the
path lets remove the path completely.
-rw-r--r-- | community/fcron/APKBUILD | 4 | ||||
-rw-r--r-- | community/fcron/systab.orig | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/community/fcron/APKBUILD b/community/fcron/APKBUILD index a5d34c1f09..ac4476ad5b 100644 --- a/community/fcron/APKBUILD +++ b/community/fcron/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Diaz Devera Victor <vitronic2@gmail.com> pkgname=fcron pkgver=3.2.1 -pkgrel=1 +pkgrel=2 pkgdesc="periodical command scheduler for systems not always up" url="http://fcron.free.fr/" install="fcron.pre-install" @@ -63,5 +63,5 @@ pam() { } sha512sums="ddfd3e3a297b843c924aacccffaa5c1c6b300497f39daa1cdb90dc4cf4bc757042b0b2c1f055c119c8128c64d830ee0e8757091610432f5ffcacca25d369e5cd fcron-3.2.1.src.tar.gz -7516c9a51b1f6c29f1256c4697028b47f7883bf5fb08ccc585cf49e4edc7598a9730a225a03aaf3749698a94b9d01dda76cd3f352c0c868960fd09374df44199 systab.orig +e0abf7da0a9c1c2a8791f9f5b8cdb99260ac3bc49b0e4906ec3fb0d3344f8fe3819a7a80b1bc7b463fe4bc4499686e84ebb33aef9a0ec2298855b06340723e43 systab.orig f87c9c9664611cd529b5f46affe5c3ff7af8fd2800b74958c34730a5ca564d888b5ddbfe18fa1ee20d4e26ed800ca38ed7f9626dd39ca2d3fc930be1ad78f4c5 fcron.initd" diff --git a/community/fcron/systab.orig b/community/fcron/systab.orig index 4041ccefe9..f6c2518803 100644 --- a/community/fcron/systab.orig +++ b/community/fcron/systab.orig @@ -1,5 +1,5 @@ -&bootrun */15 * * * * /usr/bin/run-parts /etc/periodic/15min -&bootrun 01 * * * * /usr/bin/run-parts /etc/periodic/hourly -&bootrun 02 00 * * * /usr/bin/run-parts /etc/periodic/daily -&bootrun 22 00 * * 0 /usr/bin/run-parts /etc/periodic/weekly -&bootrun 42 00 1 * * /usr/bin/run-parts /etc/periodic/monthly +&bootrun */15 * * * * run-parts /etc/periodic/15min +&bootrun 01 * * * * run-parts /etc/periodic/hourly +&bootrun 02 00 * * * run-parts /etc/periodic/daily +&bootrun 22 00 * * 0 run-parts /etc/periodic/weekly +&bootrun 42 00 1 * * run-parts /etc/periodic/monthly |