diff options
author | wiz <wiz@pkgsrc.org> | 2002-07-04 23:51:26 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2002-07-04 23:51:26 +0000 |
commit | 99b08f151f2701f6e6d4e304c57cea6e04e3f62b (patch) | |
tree | 31e1fa37b2568cd80efb9dfa8ec8d0841723762b /security | |
parent | e1799f31ef96fa82961373ebfc2fc3b22362e4a5 (diff) | |
download | pkgsrc-99b08f151f2701f6e6d4e304c57cea6e04e3f62b.tar.gz |
Add chmod a+r after downloading the new vulnerability file.
Addresses part of pkg/17368.
Bump to 1.14.
Diffstat (limited to 'security')
-rw-r--r-- | security/audit-packages/Makefile | 4 | ||||
-rw-r--r-- | security/audit-packages/files/download-vulnerability-list | 3 |
2 files changed, 4 insertions, 3 deletions
diff --git a/security/audit-packages/Makefile b/security/audit-packages/Makefile index 3c412013df8..c827a69f0be 100644 --- a/security/audit-packages/Makefile +++ b/security/audit-packages/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.16 2002/06/04 23:01:34 kim Exp $ +# $NetBSD: Makefile,v 1.17 2002/07/04 23:51:26 wiz Exp $ -DISTNAME= audit-packages-1.13 +DISTNAME= audit-packages-1.14 CATEGORIES= security pkgtools MASTER_SITES= # empty DISTFILES= # empty diff --git a/security/audit-packages/files/download-vulnerability-list b/security/audit-packages/files/download-vulnerability-list index 88daea584cf..10621e02266 100644 --- a/security/audit-packages/files/download-vulnerability-list +++ b/security/audit-packages/files/download-vulnerability-list @@ -1,5 +1,5 @@ #! ${SH} -# $NetBSD: download-vulnerability-list,v 1.11 2002/04/26 12:45:24 lukem Exp $ +# $NetBSD: download-vulnerability-list,v 1.12 2002/07/04 23:51:28 wiz Exp $ if [ ! -e ${PKGVULNDIR} ]; then echo "Creating ${PKGVULNDIR}" @@ -25,6 +25,7 @@ if [ $newsize -lt $existsize ]; then exit 1 fi +chmod a+r ${NEW_VUL_LIST} /bin/mv -f ${NEW_VUL_LIST} ${EXIST_VUL_LIST} exit 0 |