svn commit: r246746 - projects/portbuild/admin/tools

Mark Linimon linimon at FreeBSD.org
Wed Feb 13 05:39:01 UTC 2013


Author: linimon (doc,ports committer)
Date: Wed Feb 13 05:39:01 2013
New Revision: 246746
URL: http://svnweb.freebsd.org/changeset/base/246746

Log:
  Fix two missed cases, necessary for addarch in the new world.

Modified:
  projects/portbuild/admin/tools/mkportbuild

Modified: projects/portbuild/admin/tools/mkportbuild
==============================================================================
--- projects/portbuild/admin/tools/mkportbuild	Wed Feb 13 05:32:19 2013	(r246745)
+++ projects/portbuild/admin/tools/mkportbuild	Wed Feb 13 05:39:01 2013	(r246746)
@@ -142,9 +142,11 @@ chown ${SRCBUILD_USER} ${ZFS_MOUNTPOINT}
 
 # delegate the "zfsportbuildadmin" permission set to the PORTBUILD_USER. 
 zfs allow -du ${PORTBUILD_USER} @zfsportbuildadmin ${ZFS_VOLUME}/portbuild || exit 1
+zfs allow -lu ${PORTBUILD_USER} @zfsportbuildadmin ${ZFS_VOLUME}/portbuild || exit 1
 
 # delegate the "zfssnapadmin" permission set to the PORTBUILD_USER.
 zfs allow -du ${PORTBUILD_USER} @zfssnapadmin ${ZFS_VOLUME}/${SNAP_DIRECTORY} || exit 1
+zfs allow -lu ${PORTBUILD_USER} @zfssnapadmin ${ZFS_VOLUME}/${SNAP_DIRECTORY} || exit 1
 
 # (re)mount various subdirectories to be managed by portbuild.
 for subdir in ${PORTBUILD_OWNED_SUBDIRS}; do


More information about the svn-src-projects mailing list