diff options
author | 2010-04-24 09:28:19 +0000 | |
---|---|---|
committer | 2010-04-24 09:28:19 +0000 | |
commit | 73d59e22e7c7536933ca42f1d3b24c957d093f86 (patch) | |
tree | 6c3db8ac10b723b34451d0392d5db01def4117b4 | |
parent | simplify using //= (diff) | |
download | wireguard-openbsd-73d59e22e7c7536933ca42f1d3b24c957d093f86.tar.xz wireguard-openbsd-73d59e22e7c7536933ca42f1d3b24c957d093f86.zip |
+ pkg_add, for dpb
-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 f26bf3010ef..28e7e20b671 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.9 2010/04/05 14:47:05 espie Exp $ +# $OpenBSD: Paths.pm,v 1.10 2010/04/24 09:28:19 espie Exp $ # # Copyright (c) 2007 Marc Espie <espie@openbsd.org> # @@ -32,6 +32,7 @@ sub groupadd() { '/usr/sbin/groupadd' } sub sysctl() { '/sbin/sysctl' } sub openssl() { '/usr/sbin/openssl' } sub pkgca() { '/etc/ssl/pkgca.pem' } +sub pkg_add() { '/usr/sbin/pkg_add' } sub chmod() { '/bin/chmod' } # external command is used for symbolic modes. sub gzip() { '/usr/bin/gzip' } sub ftp() { $ENV{'FETCH_CMD'} || '/usr/bin/ftp' } |