summaryrefslogtreecommitdiffstats
path: root/m4/pdns_with_service_user.m4
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 21:11:59 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-13 21:11:59 +0000
commit3cd01b932e1c85394272ae64fae67ebeda92fb00 (patch)
treec5a3115d710afc1879ddea5349362a2bc651733c /m4/pdns_with_service_user.m4
parentInitial commit. (diff)
downloaddnsdist-3cd01b932e1c85394272ae64fae67ebeda92fb00.tar.xz
dnsdist-3cd01b932e1c85394272ae64fae67ebeda92fb00.zip
Adding upstream version 1.8.3.upstream/1.8.3
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'm4/pdns_with_service_user.m4')
-rw-r--r--m4/pdns_with_service_user.m417
1 files changed, 17 insertions, 0 deletions
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])
+])