pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/pkg_install-renovation]: pkgsrc/pkgtools/pkg_install/files/x509 Fix s...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/0f65e18d367f
branches:  pkg_install-renovation
changeset: 541601:0f65e18d367f
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Mon Sep 08 23:06:41 2008 +0000

description:
Fix some file names to not end in ".pem.pem".

diffstat:

 pkgtools/pkg_install/files/x509/pkgsrc.sh |  10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diffs (32 lines):

diff -r f485b5cae89e -r 0f65e18d367f pkgtools/pkg_install/files/x509/pkgsrc.sh
--- a/pkgtools/pkg_install/files/x509/pkgsrc.sh Mon Aug 25 19:15:11 2008 +0000
+++ b/pkgtools/pkg_install/files/x509/pkgsrc.sh Mon Sep 08 23:06:41 2008 +0000
@@ -1,6 +1,6 @@
 #!/bin/sh
 #
-# $NetBSD: pkgsrc.sh,v 1.1.2.1 2008/08/06 23:51:32 joerg Exp $
+# $NetBSD: pkgsrc.sh,v 1.1.2.2 2008/09/08 23:06:41 joerg Exp $
 #
 
 CA="openssl ca -config pkgsrc.cnf"
@@ -28,16 +28,16 @@
 
 new_pkgkey() {
        $REQ -new -keyout pkgkey_key.pem -out pkgkey_req.pem
-       $CA -extensions pkgkey -policy policy_match -out pkgkey_cert.pem.pem -infiles pkgkey_req.pem
+       $CA -extensions pkgkey -policy policy_match -out pkgkey_cert.pem -infiles pkgkey_req.pem
        rm pkgkey_req.pem
-       echo "Signed certificate is in pkgkey_cert.pem.pem, key in pkgkey_key.pem"
+       echo "Signed certificate is in pkgkey_cert.pem, key in pkgkey_key.pem"
 }
 
 new_pkgsec() {
        $REQ -new -keyout pkgsec_key.pem -out pkgsec_req.pem
-       $CA -extensions pkgsec -policy policy_match -out pkgsec_cert.pem.pem -infiles pkgsec_req.pem
+       $CA -extensions pkgsec -policy policy_match -out pkgsec_cert.pem -infiles pkgsec_req.pem
        rm pkgsec_req.pem
-       echo "Signed certificate is in pkgsec_cert.pem.pem, key in pkgsec_key.pem"
+       echo "Signed certificate is in pkgsec_cert.pem, key in pkgsec_key.pem"
 }
 
 usage() {



Home | Main Index | Thread Index | Old Index