diff options
author | alex <alex@FreeBSD.org> | 1996-10-19 21:03:23 +0000 |
---|---|---|
committer | alex <alex@FreeBSD.org> | 1996-10-19 21:03:23 +0000 |
commit | 790bf7566814c77d29e7119941c828db2c542ad9 (patch) | |
tree | 8afda4a3a55044c534ef4f11c21d0bf6a0a5f373 | |
parent | f1cbbed9f107041c046a45f3957d66ed84f89fc5 (diff) | |
download | FreeBSD-src-790bf7566814c77d29e7119941c828db2c542ad9.zip FreeBSD-src-790bf7566814c77d29e7119941c828db2c542ad9.tar.gz |
If /etc/daily.local is present, run it just before the security check.
Closes PR#1822.
Submitted by: John-Mark Gurney <jmg@nike.efn.org> (w/some changes)
-rw-r--r-- | etc/daily | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -164,4 +164,9 @@ if [ -f /etc/Distfile ]; then rdist -f /etc/Distfile fi +if [ -f /etc/daily.local ]; then + echo "Running daily.local:" + sh /etc/daily.local +fi + sh /etc/security 2>&1 | sendmail root |