diff options
author | jlam <jlam@pkgsrc.org> | 2007-07-04 20:54:31 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2007-07-04 20:54:31 +0000 |
commit | 98cdd9932cde6f42403278ca908a087e5bca9d36 (patch) | |
tree | 651c1d29a5b557efafa04d2bb6f2cb512a979f64 /sysutils/amanda-common | |
parent | 0247ab7847e69210ea87ced5b0d8bf19ddb094c8 (diff) | |
download | pkgsrc-98cdd9932cde6f42403278ca908a087e5bca9d36.tar.gz |
Make it easier to build and install packages "unprivileged", where
the owner of all installed files is a non-root user. This change
affects most packages that require special users or groups by making
them use the specified unprivileged user and group instead.
(1) Add two new variables PKG_GROUPS_VARS and PKG_USERS_VARS to
unprivileged.mk. These two variables are lists of other bmake
variables that define package-specific users and groups. Packages
that have user-settable variables for users and groups, e.g. apache
and APACHE_{USER,GROUP}, courier-mta and COURIER_{USER,GROUP},
etc., should list these variables in PKG_USERS_VARS and PKG_GROUPS_VARS
so that unprivileged.mk can know to set them to ${UNPRIVILEGED_USER}
and ${UNPRIVILEGED_GROUP}.
(2) Modify packages to use PKG_GROUPS_VARS and PKG_USERS_VARS.
Diffstat (limited to 'sysutils/amanda-common')
-rw-r--r-- | sysutils/amanda-common/Makefile | 4 | ||||
-rw-r--r-- | sysutils/amanda-common/Makefile.common | 7 |
2 files changed, 6 insertions, 5 deletions
diff --git a/sysutils/amanda-common/Makefile b/sysutils/amanda-common/Makefile index 18a5bf263c4..3d1b41b9c62 100644 --- a/sysutils/amanda-common/Makefile +++ b/sysutils/amanda-common/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.41 2006/10/02 21:05:44 rillig Exp $ +# $NetBSD: Makefile,v 1.42 2007/07/04 20:54:59 jlam Exp $ PKGNAME= amanda-common-${VERS} PKGREVISION= 4 @@ -34,6 +34,6 @@ PKG_SHELL.${AMANDA_USER}= ${SH} OWN_DIRS_PERMS= ${AMANDA_VAR} ${AMANDA_USER} ${AMANDA_GROUP} 0700 OWN_DIRS_PERMS+= ${AMANDA_VAR}/gnutar-lists ${AMANDA_USER} ${AMANDA_GROUP} 0700 -BUILD_DEFS+= AMANDA_VAR AMANDA_USER AMANDA_GROUP +BUILD_DEFS+= AMANDA_VAR .include "../../mk/bsd.pkg.mk" diff --git a/sysutils/amanda-common/Makefile.common b/sysutils/amanda-common/Makefile.common index 453cb529c1d..8efb9d2f19a 100644 --- a/sysutils/amanda-common/Makefile.common +++ b/sysutils/amanda-common/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.24 2007/01/05 12:47:27 obache Exp $ +# $NetBSD: Makefile.common,v 1.25 2007/07/04 20:54:59 jlam Exp $ # # common make file fragment shared by all amanda-* pkgs. # @@ -24,8 +24,9 @@ AMANDA_USER?= backup AMANDA_TMP?= /tmp/amanda AMANDA_VAR?= ${VARBASE}/amanda -BUILD_DEFS+= AMANDA_USER AMANDA_GROUP AMANDA_SMB -BUILD_DEFS+= AMANDA_TMP AMANDA_VAR VARBASE +PKG_GROUPS_VARS+= AMANDA_GROUP +PKG_USERS_VARS+= AMANDA_USER +BUILD_DEFS+= AMANDA_SMB AMANDA_TMP AMANDA_VAR VARBASE USE_LIBTOOL= yes |