summaryrefslogtreecommitdiff
path: root/security/audit-packages
diff options
context:
space:
mode:
authordmcmahill <dmcmahill>2001-02-22 16:56:29 +0000
committerdmcmahill <dmcmahill>2001-02-22 16:56:29 +0000
commit5a84ad188fea85bb21cae45297970111b9c8667f (patch)
tree0ce48623a677a98f2b65652acef1144cf0ce0f27 /security/audit-packages
parent9ad925cb9c7bb618f8947bf9d4c663fb5eaccf46 (diff)
downloadpkgsrc-5a84ad188fea85bb21cae45297970111b9c8667f.tar.gz
add a MESSAGE suggesting that the package audit be added to /etc/security.local
and the vulnerabilities file be downloaded via cron every day.
Diffstat (limited to 'security/audit-packages')
-rw-r--r--security/audit-packages/pkg/MESSAGE21
1 files changed, 21 insertions, 0 deletions
diff --git a/security/audit-packages/pkg/MESSAGE b/security/audit-packages/pkg/MESSAGE
new file mode 100644
index 00000000000..ff65ddcbde6
--- /dev/null
+++ b/security/audit-packages/pkg/MESSAGE
@@ -0,0 +1,21 @@
+======================================================================
+$NetBSD: MESSAGE,v 1.1 2001/02/22 16:56:29 dmcmahill Exp $
+
+You may wish to have the vulnerabilities file downloaded daily so that
+it remains current. This may be done by adding an appropriate entry
+to the root users crontab(5) entry. For example the entry
+
+# download vulnerabilities file
+0 3 * * * ${PREFIX}/sbin/download-vulnerability-list >/dev/null 2>&1
+
+will update the vulnerability list every day at 3AM.
+
+In addition, you may wish to run the package audit from the daily
+security script. This may be accomplished by adding the following
+lines to /etc/security.local
+
+if [ -x ${PREFIX}/sbin/audit-packages ]; then
+ ${PREFIX}/sbin/audit-packages
+fi
+
+======================================================================