diff options
author | Christian Weisgerber <naddy@cvs.openbsd.org> | 2015-07-21 05:10:13 +0000 |
---|---|---|
committer | Christian Weisgerber <naddy@cvs.openbsd.org> | 2015-07-21 05:10:13 +0000 |
commit | 12eff34e961c2802f8428ce0b4da973e4e7ada89 (patch) | |
tree | 84615a7ab558ec565e1d6a6c1fab1854354e0bb2 /usr.sbin | |
parent | 5b9af45894df37d6bbbd16f39fe688f8d68ba879 (diff) |
switch dpb from sudo to doas (and env as required); ok sthen@
Diffstat (limited to 'usr.sbin')
-rw-r--r-- | usr.sbin/pkg_add/OpenBSD/Paths.pm | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.sbin/pkg_add/OpenBSD/Paths.pm b/usr.sbin/pkg_add/OpenBSD/Paths.pm index b49be5ef17e..83738d8d376 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.31 2015/04/16 13:29:16 espie Exp $ +# $OpenBSD: Paths.pm,v 1.32 2015/07/21 05:10:12 naddy Exp $ # # Copyright (c) 2007-2014 Marc Espie <espie@openbsd.org> # @@ -52,7 +52,8 @@ sub ssh() { '/usr/bin/ssh' } sub make() { '/usr/bin/make' } sub mklocatedb() { '/usr/libexec/locate.mklocatedb' } sub hostname() { '/bin/hostname' } -sub sudo() { '/usr/bin/sudo' } +sub doas() { '/usr/bin/doas' } +sub env() { '/usr/bin/env' } sub du() { '/usr/bin/du' } sub diff() { '/usr/bin/diff' } sub sha256() { '/bin/sha256' } |