fcron: enable PAM

This commit is contained in:
Juergen Daubert 2019-03-14 13:17:19 +01:00
parent 5213750acb
commit 08ac2e4132
3 changed files with 11 additions and 5 deletions

View File

@ -3,6 +3,10 @@ drwxr-xr-x root/root etc/fcron/
-rw-r----- root/fcron etc/fcron/fcron.allow
-rw-r----- root/fcron etc/fcron/fcron.conf
-rw-r----- root/fcron etc/fcron/fcron.deny
-rw-r--r-- root/root etc/fcron/pam.conf
drwxr-xr-x root/root etc/pam.d/
-rw-r--r-- root/root etc/pam.d/fcron
-rw-r--r-- root/root etc/pam.d/fcrontab
drwxr-xr-x root/root etc/rc.d/
-rwxr-xr-x root/root etc/rc.d/fcron
drwxr-xr-x root/root usr/

View File

@ -1,7 +1,7 @@
untrusted comment: verify with /etc/ports/opt.pub
RWSE3ohX2g5d/eRYA4ymrXu1AsIqeAW6p8oxbzAnU775TNg6tvS7C0DtmIjMM7JS7pdI9EPYQwcySb0CrINBbbGwd6spXAUA9AE=
SHA256 (Pkgfile) = 9a080c0fc7e98bd8673ff8ea7447700ca9baf7839969b59d90b174be10dea5f4
SHA256 (.footprint) = d05b76eaa04d446f4b3db76889fa558fcd6048e7d9dbcdf0428132c03c0f4ec4
RWSE3ohX2g5d/TT3yEnUf5vWF1aeR4ISrXCynodaCbRwmQMYhufDvbScpxHcVaKQbzeNGfoFboPa40lPe0/WH3ddDOhQTcXmOw4=
SHA256 (Pkgfile) = 40dd9fd59365c0e8f8b4083600a1c010268b38fe96eeac42404dbf621fde7465
SHA256 (.footprint) = 0f191355e32541379e76ffe91f2221bcd7cbf014affa5f9236aa3b3fd30088ed
SHA256 (fcron-3.3.0.src.tar.gz) = 9aead33a0926e2eec123698c502114c6d67b483fe1ec232969fae6809b0bab60
SHA256 (fcron) = f57aeeedd1b0ddcc92fd24ad105b45646555ae648ee6d9fedec8c4eafdc6487a
SHA256 (systab.orig) = 768de3cddf3dee50a80a154282a9efa9195dfd60fdb0ba2a0ac4401ac7a9eb69

View File

@ -5,7 +5,7 @@
name=fcron
version=3.3.0
release=1
release=2
source=(http://fcron.free.fr/archives/$name-$version.src.tar.gz
fcron systab.orig)
@ -23,7 +23,7 @@ build () {
--with-groupname=fcron \
--with-db2man=no \
--with-dsssl-dir=no \
--with-pam=no \
--with-pam=yes \
--with-sendmail=/usr/sbin/sendmail
make
@ -31,6 +31,8 @@ build () {
rm -r $PKG/{usr/share/{doc,man/{fr,man3}},var/run}
install -D -m 644 files/fcron.pam $PKG/etc/pam.d/fcron
install -D -m 644 files/fcrontab.pam $PKG/etc/pam.d/fcrontab
install -D -m 755 $SRC/fcron $PKG/etc/rc.d/fcron
install -m 600 -o root -g fcron $SRC/systab.orig $PKG/var/spool/fcron
}