diff options
author | 2007-09-03 13:40:02 +0000 | |
---|---|---|
committer | 2007-09-03 13:40:02 +0000 | |
commit | f91150b8bfe34bb52e18020fd627f56e2f024008 (patch) | |
tree | b2bbab11efb0e1011ee66351c7ce1dfd04623a1c | |
parent | last commit broke the tree because of missing parentheses. (diff) | |
download | wireguard-openbsd-f91150b8bfe34bb52e18020fd627f56e2f024008.tar.xz wireguard-openbsd-f91150b8bfe34bb52e18020fd627f56e2f024008.zip |
- break "Defaults env_keep" into several lines so it is more readable
- add OWNER and GROUP to env_keep so that make-plist creates pkg/P* with
the correct uid/gid (hopefully this would be the last ports related change)
ok millert@
-rw-r--r-- | usr.bin/sudo/sudoers | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/usr.bin/sudo/sudoers b/usr.bin/sudo/sudoers index a07ddcbd474..fb442e40a86 100644 --- a/usr.bin/sudo/sudoers +++ b/usr.bin/sudo/sudoers @@ -1,4 +1,4 @@ -# $OpenBSD: sudoers,v 1.12 2007/08/09 16:12:08 ajacoutot Exp $ +# $OpenBSD: sudoers,v 1.13 2007/09/03 13:40:02 ajacoutot Exp $ # # sudoers file. # @@ -14,7 +14,9 @@ # Cmnd alias specification # Defaults specification -Defaults env_keep +="DESTDIR FETCH_CMD FLAVOR FTPMODE MAKE MULTI_PACKAGES OKAY_FILES PKG_DBDIR PKG_DESTDIR PKG_CACHE PKG_PATH PKG_TMPDIR PORTSDIR RELEASEDIR SUBPACKAGE" +Defaults env_keep +="DESTDIR FETCH_CMD FLAVOR FTPMODE GROUP MAKE MULTI_PACKAGES" +Defaults env_keep +="OKAY_FILES OWNER PKG_DBDIR PKG_DESTDIR PKG_CACHE PKG_PATH" +Defaults env_keep +="PKG_TMPDIR PORTSDIR RELEASEDIR SUBPACKAGE" # Uncomment to preserve the environment for users in group wheel #Defaults:%wheel !env_reset |