diff options
author | Bruno Rohee <rohee@cvs.openbsd.org> | 2000-07-23 19:49:18 +0000 |
---|---|---|
committer | Bruno Rohee <rohee@cvs.openbsd.org> | 2000-07-23 19:49:18 +0000 |
commit | beef1502e87446d87ad19b25100efd76bbde8fc5 (patch) | |
tree | e00a44701498daeb2b5d88f70d117fdd204f5084 /etc/security | |
parent | b11c55519b176185bd7859a2f02494b76246be13 (diff) |
Add a little blurb explaing the meaning of mtree's output.
millert@ ok.
Diffstat (limited to 'etc/security')
-rw-r--r-- | etc/security | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/etc/security b/etc/security index 0e0a07e4592..65ca81d5726 100644 --- a/etc/security +++ b/etc/security @@ -1,6 +1,6 @@ #!/bin/sh - # -# $OpenBSD: security,v 1.37 2000/06/18 06:33:34 todd Exp $ +# $OpenBSD: security,v 1.38 2000/07/23 19:49:17 rohee Exp $ # from: @(#)security 8.1 (Berkeley) 6/9/93 # @@ -609,6 +609,8 @@ if [ -d /etc/mtree ] ; then mtree -e -p / -f /etc/mtree/special > $OUTPUT if [ -s $OUTPUT ] ; then printf "\nChecking special files and directories.\n" + printf "Output format is:\n\tfilename:\n" + printf "\t\tcriteria (shouldbe, reallyis)\n" cat $OUTPUT fi |