This is a discussion on install {at,cron}.allow by default within the mailing.openbsd.tech forums, part of the OpenBSD category; --> Hi... This is a stupid and trivial patch, but I was wondering why this was not the default. Thanks! ...
| |||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Hi... This is a stupid and trivial patch, but I was wondering why this was not the default. Thanks! -- Antoine Jacoutot Observatoire de Paris SIO - Centre de calcul (Bat 15) 5, Place Jules Janssen 92195 Meudon Cedex Tel : +33 (0)1.45.07.71.95 --- src/distrib/sets/lists/etc/mi.orig Thu Jun 29 14:51:00 2006 +++ src/distrib/sets/lists/etc/mi Thu Jun 29 14:51:27 2006 @@ -137,7 +137,9 @@ ./root/.login ./root/.profile ./var/crash/minfree +./var/cron/at.allow ./var/cron/at.deny +./var/cron/cron.allow ./var/cron/cron.deny ./var/cron/log ./var/cron/tabs/root --- src/etc/Makefile.orig Thu Jun 29 14:51:46 2006 +++ src/etc/Makefile Thu Jun 29 14:53:08 2006 @@ -184,7 +184,11 @@ ${INSTALL} -c -o ${BINOWN} -g operator -m 664 /dev/null \ ${DESTDIR}/etc/dumpdates ${INSTALL} -c -o root -g crontab -m 660 /dev/null \ + ${DESTDIR}/var/cron/at.allow + ${INSTALL} -c -o root -g crontab -m 660 /dev/null \ ${DESTDIR}/var/cron/at.deny + ${INSTALL} -c -o root -g crontab -m 660 /dev/null \ + ${DESTDIR}/var/cron/cron.allow ${INSTALL} -c -o root -g crontab -m 660 /dev/null \ ${DESTDIR}/var/cron/cron.deny ${INSTALL} -c -o root -g wheel -m 600 /dev/null \ |