From 4fc2f55f761d71aae1f145d5aa94ba929cc39676 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 28 Apr 2024 11:34:30 +0200 Subject: Adding upstream version 1.7.3. Signed-off-by: Daniel Baumann --- m4/pdns_with_service_user.m4 | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 m4/pdns_with_service_user.m4 (limited to 'm4/pdns_with_service_user.m4') diff --git a/m4/pdns_with_service_user.m4 b/m4/pdns_with_service_user.m4 new file mode 100644 index 0000000..246b544 --- /dev/null +++ b/m4/pdns_with_service_user.m4 @@ -0,0 +1,17 @@ +AC_DEFUN([PDNS_WITH_SERVICE_USER], [ + AC_MSG_CHECKING([What user and group will be used by service]) + AC_ARG_WITH([service-user], + AS_HELP_STRING([--with-service-user], [User to use by service when running the service @<:@default=$1@:>@. Only the setuid setting and User in the systemd unit file are affected, the user is not created.]), + [AC_SUBST([service_user], [$withval])], + [AC_SUBST([service_user], [$1])] + ) + + AC_ARG_WITH([service-group], + AS_HELP_STRING([--with-service-group], [Group to use by service when running the service @<:@default=$1@:>@. Only the setgid setting and Group in the systemd unit file are affected, the group is not created.]), + [AC_SUBST([service_group], [$withval])], + [AC_SUBST([service_group], [$1])] + ) + + AS_IF([test -z "$service_user"], [AC_MSG_ERROR([No service user has been defined!])], [ : ]) + AC_MSG_RESULT([$service_user]) +]) -- cgit v1.2.3