cronie: add missing arguments to make_dirs.
This commit is contained in:
parent
1c49c9d9f1
commit
1443e93378
|
@ -1,7 +1,7 @@
|
|||
# Template file for 'cronie'
|
||||
pkgname=cronie
|
||||
version=1.4.11
|
||||
revision=1
|
||||
revision=2
|
||||
build_style=gnu-configure
|
||||
configure_args="--with-inotify --without-selinux --with-pam
|
||||
--disable-anacron --localstatedir=/var --enable-pie --enable-relro"
|
||||
|
@ -25,11 +25,11 @@ post_install() {
|
|||
|
||||
cronie_package() {
|
||||
make_dirs="
|
||||
/etc/cron.d/daily
|
||||
/etc/cron.d/weekly
|
||||
/etc/cron.d/monthly
|
||||
/etc/cron.d/yearly
|
||||
/var/spool/cron"
|
||||
/etc/cron.d/daily 0755 root root
|
||||
/etc/cron.d/weekly 0755 root root
|
||||
/etc/cron.d/monthly 0755 root root
|
||||
/etc/cron.d/yearly 0755 root root
|
||||
/var/spool/cron 0755 root root"
|
||||
conf_files="/etc/crontab /etc/pam.d/crond /etc/cron.deny"
|
||||
replaces="cron-daemon>=0"
|
||||
provides="cron-daemon-0"
|
||||
|
|
Loading…
Reference in New Issue