From 03881cb0bcdf746e823e02d31bb188fbebe71961 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Nussbaumer?= <rn@google.com> Date: Thu, 19 May 2011 13:41:52 +0200 Subject: [PATCH] autotools: Add noded group MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: RenΓ© Nussbaumer <rn@google.com> Reviewed-by: Iustin Pop <iustin@google.com> --- Makefile.am | 1 + configure.ac | 3 +++ lib/constants.py | 1 + 3 files changed, 5 insertions(+) diff --git a/Makefile.am b/Makefile.am index d50d472bd..b0990f83c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -714,6 +714,7 @@ lib/_autoconf.py: Makefile vcs-version | lib/.dir echo "CONFD_USER = '$(CONFD_USER)'"; \ echo "CONFD_GROUP = '$(CONFD_GROUP)'"; \ echo "NODED_USER = '$(NODED_USER)'"; \ + echo "NODED_GROUP = '$(NODED_GROUP)'"; \ echo "VCS_VERSION = '$$VCSVER'"; \ echo "DISK_SEPARATOR = '$(DISK_SEPARATOR)'"; \ } > $@ diff --git a/configure.ac b/configure.ac index 41d2d8f2f..856772951 100644 --- a/configure.ac +++ b/configure.ac @@ -164,16 +164,19 @@ AC_ARG_WITH([group-prefix], group_admin="${withval}admin"; group_confd="${withval}confd"; group_masterd="${withval}masterd"; + group_noded="root"; group_daemons="${withval}daemons";], [group_rapi="root"; group_admin="root"; group_confd="root"; group_masterd="root"; + group_noded="root"; group_daemons="root"]) AC_SUBST(RAPI_GROUP, $group_rapi) AC_SUBST(ADMIN_GROUP, $group_admin) AC_SUBST(CONFD_GROUP, $group_confd) AC_SUBST(MASTERD_GROUP, $group_masterd) +AC_SUBST(NODED_GROUP, $group_noded) AC_SUBST(DAEMONS_GROUP, $group_daemons) # Print the config to the user diff --git a/lib/constants.py b/lib/constants.py index d26507345..1de0ed598 100644 --- a/lib/constants.py +++ b/lib/constants.py @@ -96,6 +96,7 @@ RAPI_GROUP = _autoconf.RAPI_GROUP CONFD_USER = _autoconf.CONFD_USER CONFD_GROUP = _autoconf.CONFD_GROUP NODED_USER = _autoconf.NODED_USER +NODED_GROUP = _autoconf.NODED_GROUP # Wipe -- GitLab