diff options
Diffstat (limited to 'system/cronie/cronie.SlackBuild')
-rw-r--r-- | system/cronie/cronie.SlackBuild | 9 |
1 files changed, 5 insertions, 4 deletions
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 |