cronie: crontab must be setuid (found by v2px).

This commit is contained in:
Juan RP 2014-02-27 11:42:11 +01:00
parent d685ae7ac4
commit 3e8bf5d5e6
1 changed files with 3 additions and 1 deletions

View File

@ -1,7 +1,7 @@
# Template file for 'cronie'
pkgname=cronie
version=1.4.11
revision=3
revision=4
build_style=gnu-configure
configure_args="--with-inotify --without-selinux --with-pam
--disable-anacron --localstatedir=/var --enable-pie --enable-relro"
@ -34,4 +34,6 @@ post_install() {
# Add /etc/cron.deny empty, to allow all users.
touch ${DESTDIR}/etc/cron.deny
chmod 644 ${DESTDIR}/etc/cron.deny
# crontab must be setuid
chmod u+s ${DESTDIR}/usr/bin/crontab
}