diff options
author | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1993-10-25 06:10:42 +0000 |
---|---|---|
committer | Rodney W. Grimes <rgrimes@FreeBSD.org> | 1993-10-25 06:10:42 +0000 |
commit | a577a6588def3a7dc0f69596d663061fc538e43b (patch) | |
tree | bbad0a6840012a4c9a07bb1dcc82e4b39bc1f823 /etc | |
parent | 92f19462050e7e71e2fa3dbf7adad30a37d52203 (diff) |
Redirect standard error onto standard out when call /etc/security so
that the errors from /etc/security are in the mail message from
/etc/security and not the /etc/daily mail message. Now just to fix
the bug in /etc/security
Notes
Notes:
svn path=/head/; revision=667
Diffstat (limited to 'etc')
-rw-r--r-- | etc/daily | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/daily b/etc/daily index c974a529f915..bddf22f42a86 100644 --- a/etc/daily +++ b/etc/daily @@ -145,4 +145,4 @@ if [ -f /etc/Distfile ]; then rdist -f /etc/Distfile fi -sh /etc/security | mail -s "daily insecurity output" root +sh /etc/security 2>&1 | mail -s "daily insecurity output" root |