diff options
author | Marc Espie <espie@cvs.openbsd.org> | 2009-04-14 17:53:59 +0000 |
---|---|---|
committer | Marc Espie <espie@cvs.openbsd.org> | 2009-04-14 17:53:59 +0000 |
commit | 0eeedccf76bc2c7471d658552dead38ad5afbea9 (patch) | |
tree | bbf9b52d2bae817a80f29da0813928d1638a8e8f /usr.sbin/pkg_add/OpenBSD/Paths.pm | |
parent | ed3a64d9765d596b326e1d8ef28e5c975a742929 (diff) |
initial implementation of package signatures, based on x509 certificates and
smime detached signatures.
Diffstat (limited to 'usr.sbin/pkg_add/OpenBSD/Paths.pm')
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/Paths.pm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/Paths.pm b/usr.sbin/pkg_add/OpenBSD/Paths.pm index 29f5a8ed1c6..b182b052393 100644 --- a/usr.sbin/pkg_add/OpenBSD/Paths.pm +++ b/usr.sbin/pkg_add/OpenBSD/Paths.pm @@ -1,5 +1,5 @@ # ex:ts=8 sw=4: -# $OpenBSD: Paths.pm,v 1.6 2007/08/28 10:39:03 espie Exp $ +# $OpenBSD: Paths.pm,v 1.7 2009/04/14 17:53:58 espie Exp $ # # Copyright (c) 2007 Marc Espie <espie@openbsd.org> # @@ -31,6 +31,7 @@ sub useradd() { '/usr/sbin/useradd' } sub groupadd() { '/usr/sbin/groupadd' } sub sysctl() { '/sbin/sysctl' } sub openssl() { '/usr/sbin/openssl' } +sub pkgca() { '/etc/ssl/pkgca.pem' } sub chmod() { '/bin/chmod' } # external command is used for symbolic modes. sub gzip() { '/usr/bin/gzip' } sub ftp() { $ENV{'FETCH_CMD'} || '/usr/bin/ftp' } |