From 12cd740b634feae442197491f27e04852bf1f9ff Mon Sep 17 00:00:00 2001 From: Chris Abela Date: Sun, 27 Oct 2013 01:12:37 -0500 Subject: system/cronie: Updated for version 1.4.11. - gunzipping of various support files by rworkman Signed-off-by: Robby Workman --- system/cronie/README | 11 +++------- system/cronie/cronie.SlackBuild | 9 ++++---- system/cronie/cronie.info | 6 +++--- system/cronie/crontab.root | 22 +++++++++++++++++++ system/cronie/crontab.root.gz | Bin 487 -> 0 bytes system/cronie/run-parts | 46 ++++++++++++++++++++++++++++++++++++++++ system/cronie/run-parts.8 | 36 +++++++++++++++++++++++++++++++ system/cronie/run-parts.8.gz | Bin 699 -> 0 bytes system/cronie/run-parts.gz | Bin 563 -> 0 bytes 9 files changed, 115 insertions(+), 15 deletions(-) create mode 100644 system/cronie/crontab.root delete mode 100644 system/cronie/crontab.root.gz create mode 100644 system/cronie/run-parts create mode 100644 system/cronie/run-parts.8 delete mode 100644 system/cronie/run-parts.8.gz delete mode 100644 system/cronie/run-parts.gz (limited to 'system/cronie') diff --git a/system/cronie/README b/system/cronie/README index 619f5743ca..91fb821be0 100644 --- a/system/cronie/README +++ b/system/cronie/README @@ -7,13 +7,11 @@ By default this SlackBuild will include anacron in the package. If you don't want this, pass ANACRON=no to the SlackBuild. Note that Slackware has dcron - Dillon's Cron daemon. This package will -conflict with this package. It is advised to remove dcron before installing +conflict with dcron, so it is advised to remove dcron before installing cronie: - Stop the dcron daemon: - # pgrep crond - # kill - Remove the dcron package: + Stop the dcron daemon and remove the dcron package: + # kill $(pgrep crond) # removepkg dcron # rm -rf /var/spool/cron @@ -21,9 +19,6 @@ Slackware's boot script assumes that you have dcron and thus has to be modified: Change this line in /etc/rc.d/rc.M - /usr/sbin/crond -l notice - to: - /usr/sbin/crond diff --git a/system/cronie/cronie.SlackBuild b/system/cronie/cronie.SlackBuild index 6133b06aa5..e2ff278fcc 100644 --- a/system/cronie/cronie.SlackBuild +++ b/system/cronie/cronie.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=cronie -VERSION=${VERSION:-1.4.9} +VERSION=${VERSION:-1.4.11} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} @@ -101,12 +101,13 @@ touch $PKG/etc/cron.deny.new chmod 600 $PKG/etc/cron.deny.new # These are copied from Slackware's dcron.SlackBuild -zcat $CWD/run-parts.gz > $PKG/usr/bin/run-parts -cat $CWD/run-parts.8.gz > $PKG/usr/man/man8/run-parts.8.gz +cat $CWD/run-parts > $PKG/usr/bin/run-parts +chmod 0755 $PKG/usr/bin/run-parts +cat $CWD/run-parts.8 > $PKG/usr/man/man8/run-parts.8 mkdir -p $PKG/etc/cron.{hourly,daily,weekly,monthly} mkdir -p $PKG/var/spool/cron/ chmod 0700 $PKG/var/spool/cron/ -zcat $CWD/crontab.root.gz > $PKG/var/spool/cron/root.new +cat $CWD/crontab.root > $PKG/var/spool/cron/root.new chmod 0600 $PKG/var/spool/cron/root.new mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION diff --git a/system/cronie/cronie.info b/system/cronie/cronie.info index e1cfccfc85..704d4fa6f6 100644 --- a/system/cronie/cronie.info +++ b/system/cronie/cronie.info @@ -1,8 +1,8 @@ PRGNAM="cronie" -VERSION="1.4.9" +VERSION="1.4.11" HOMEPAGE="https://fedorahosted.org/cronie/" -DOWNLOAD="https://fedorahosted.org/releases/c/r/cronie/cronie-1.4.9.tar.gz" -MD5SUM="9133195e5e6f824ef460f5ccc533f1b7" +DOWNLOAD="https://fedorahosted.org/releases/c/r/cronie/cronie-1.4.11.tar.gz" +MD5SUM="2ba645cf54de17f138ef70312843862f" DOWNLOAD_x86_64="" MD5SUM_x86_64="" REQUIRES="" diff --git a/system/cronie/crontab.root b/system/cronie/crontab.root new file mode 100644 index 0000000000..5b0ce8cbfc --- /dev/null +++ b/system/cronie/crontab.root @@ -0,0 +1,22 @@ +# If you don't want the output of a cron job mailed to you, you have to direct +# any output to /dev/null. We'll do this here since these jobs should run +# properly on a newly installed system. If a script fails, run-parts will +# mail a notice to root. +# +# Run the hourly, daily, weekly, and monthly cron jobs. +# Jobs that need different timing may be entered into the crontab as before, +# but most really don't need greater granularity than this. If the exact +# times of the hourly, daily, weekly, and monthly cron jobs do not suit your +# needs, feel free to adjust them. +# +# Run hourly cron jobs at 47 minutes after the hour: +47 * * * * /usr/bin/run-parts /etc/cron.hourly 1> /dev/null +# +# Run daily cron jobs at 4:40 every day: +40 4 * * * /usr/bin/run-parts /etc/cron.daily 1> /dev/null +# +# Run weekly cron jobs at 4:30 on the first day of the week: +30 4 * * 0 /usr/bin/run-parts /etc/cron.weekly 1> /dev/null +# +# Run monthly cron jobs at 4:20 on the first day of the month: +20 4 1 * * /usr/bin/run-parts /etc/cron.monthly 1> /dev/null diff --git a/system/cronie/crontab.root.gz b/system/cronie/crontab.root.gz deleted file mode 100644 index 599e0f1e67..0000000000 Binary files a/system/cronie/crontab.root.gz and /dev/null differ diff --git a/system/cronie/run-parts b/system/cronie/run-parts new file mode 100644 index 0000000000..65c778f36d --- /dev/null +++ b/system/cronie/run-parts @@ -0,0 +1,46 @@ +#!/bin/sh +# run-parts: Runs all the scripts found in a directory. + +# keep going when something fails +set +e + +if [ $# -lt 1 ]; then + echo "Usage: run-parts " + exit 1 +fi + +if [ ! -d $1 ]; then + echo "Not a directory: $1" + echo "Usage: run-parts " + exit 1 +fi + +# There are several types of files that we would like to +# ignore automatically, as they are likely to be backups +# of other scripts: +IGNORE_SUFFIXES="~ ^ , .bak .new .rpmsave .rpmorig .rpmnew .swp" + +# Main loop: +for SCRIPT in $1/* ; do + # If this is not a regular file, skip it: + if [ ! -f $SCRIPT ]; then + continue + fi + # Determine if this file should be skipped by suffix: + SKIP=false + for SUFFIX in $IGNORE_SUFFIXES ; do + if [ ! "$(basename $SCRIPT $SUFFIX)" = "$(basename $SCRIPT)" ]; then + SKIP=true + break + fi + done + if [ "$SKIP" = "true" ]; then + continue + fi + # If we've made it this far, then run the script if it's executable: + if [ -x $SCRIPT ]; then + $SCRIPT || echo "$SCRIPT failed." + fi +done + +exit 0 diff --git a/system/cronie/run-parts.8 b/system/cronie/run-parts.8 new file mode 100644 index 0000000000..2d5e5f6ad1 --- /dev/null +++ b/system/cronie/run-parts.8 @@ -0,0 +1,36 @@ +.\" -*- nroff -*- +.ds g \" empty +.ds G \" empty +.\" Like TP, but if specified indent is more than half +.\" the current line-length - indent, use the default indent. +.de Tp +.ie \\n(.$=0:((0\\$1)*2u>(\\n(.lu-\\n(.iu)) .TP +.el .TP "\\$1" +.. +.TH RUN-PARTS 8 "14 Apr 2002" "Slackware Version 8.1.0 +.SH NAME +run-parts \- run scripts found in a directory +.SH SYNOPSIS +.B run-parts +.LP +.SH DESCRIPTION +.B run-parts +is a utility that will run scripts that are found in a directory. For example, +it might be useful to create an /etc/cron.daily directory and put scripts in +there for daily cron jobs. Then +.B run-parts +can be called once a day from root's crontab to run all the scripts found in +/etc/cron.daily: + +40 4 * * * run-parts /etc/cron.daily + +.B run-parts +automatically skips files with certain suffixes that are generally associated +with backup or extra files. Any file that ends in one of these will be silently +ignored: ~ ^ , .bak .new .rpmsave .rpmorig .rpmnew .swp +.SH AUTHOR +Patrick J. Volkerding , with ideas borrowed from the +Red Hat and Debian versions of this utility. +.SH "SEE ALSO" +.BR crond(8), +.BR crontab(8). diff --git a/system/cronie/run-parts.8.gz b/system/cronie/run-parts.8.gz deleted file mode 100644 index 6fa2addccc..0000000000 Binary files a/system/cronie/run-parts.8.gz and /dev/null differ diff --git a/system/cronie/run-parts.gz b/system/cronie/run-parts.gz deleted file mode 100644 index b98263aa3f..0000000000 Binary files a/system/cronie/run-parts.gz and /dev/null differ -- cgit v1.2.3-65-gdbad