diff options
author | agc <agc> | 2003-12-11 17:10:21 +0000 |
---|---|---|
committer | agc <agc> | 2003-12-11 17:10:21 +0000 |
commit | 883f0c887dd0b7aeca51a5e3b733869e29443e8d (patch) | |
tree | 65b2881a00e250541f487ff3dd4f3dce3ac4182d /security | |
parent | a35f8c13838c23df66421f604f1bc0b2ea79cb50 (diff) | |
download | pkgsrc-883f0c887dd0b7aeca51a5e3b733869e29443e8d.tar.gz |
Update audit-packages to version 1.27.
Difference from previous version (1.26):
+ if the vulnerability list is older than a week, just display a warning
message - don't consider this a fatal error.
Diffstat (limited to 'security')
-rw-r--r-- | security/audit-packages/Makefile | 4 | ||||
-rwxr-xr-x | security/audit-packages/files/audit-packages | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/security/audit-packages/Makefile b/security/audit-packages/Makefile index 5954ff90d77..15b68cbc766 100644 --- a/security/audit-packages/Makefile +++ b/security/audit-packages/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.35 2003/12/03 04:58:01 martti Exp $ +# $NetBSD: Makefile,v 1.36 2003/12/11 17:10:21 agc Exp $ -DISTNAME= audit-packages-1.26 +DISTNAME= audit-packages-1.27 WRKSRC= ${WRKDIR} CATEGORIES= security pkgtools MASTER_SITES= # empty diff --git a/security/audit-packages/files/audit-packages b/security/audit-packages/files/audit-packages index 2709baff137..a3f960b21bd 100755 --- a/security/audit-packages/files/audit-packages +++ b/security/audit-packages/files/audit-packages @@ -1,6 +1,6 @@ #! @SH@ # -# $NetBSD: audit-packages,v 1.14 2003/10/18 10:16:57 agc Exp $ +# $NetBSD: audit-packages,v 1.15 2003/12/11 17:10:21 agc Exp $ # # Copyright (c) 2000-2003 Alistair Crooks. All rights reserved. # @@ -44,7 +44,7 @@ errmsg="" case "$errmsg" in "") # check for old vulnerabilities file - [ -n "$(find $vuls -ctime +7)" ] && errmsg="** $vuls more than a week old" + [ -n "$(find $vuls -ctime +7)" ] && echo "*** WARNING - $vuls more than a week old, continuing..." ;; esac |