summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authordmcmahill <dmcmahill@pkgsrc.org>2001-02-22 16:56:29 +0000
committerdmcmahill <dmcmahill@pkgsrc.org>2001-02-22 16:56:29 +0000
commit4c77a4ccf37792c10d5e9aa8c3f71a490f16dbc0 (patch)
tree0ce48623a677a98f2b65652acef1144cf0ce0f27 /security
parent879ce8316f494c242b06059179b1a8167a399666 (diff)
downloadpkgsrc-4c77a4ccf37792c10d5e9aa8c3f71a490f16dbc0.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')
-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
+
+======================================================================