diff options
author | Simo Sorce <simo@redhat.com> | 2013-04-12 17:09:06 -0400 |
---|---|---|
committer | Simo Sorce <simo@redhat.com> | 2013-04-23 12:02:50 -0700 |
commit | edf939632c9a1dbab4e769f0c23fe393d7fc8a6a (patch) | |
tree | b6fabfe341663ee072ef6cbe5be7f62e956991fd /proxy/conf_macros.m4 | |
parent | 7f8078e906b138dcd34f84e0260cba87b63ca62f (diff) | |
download | gss-proxy-edf939632c9a1dbab4e769f0c23fe393d7fc8a6a.tar.gz gss-proxy-edf939632c9a1dbab4e769f0c23fe393d7fc8a6a.tar.xz gss-proxy-edf939632c9a1dbab4e769f0c23fe393d7fc8a6a.zip |
Add support for per-service sockets
This way different processes running as the same user can be configured as
different servervices
Signed-off-by: Simo Sorce <simo@redhat.com>
Reviewed-by: Günther Deschner <gdeschner@redhat.com>
Diffstat (limited to 'proxy/conf_macros.m4')
-rw-r--r-- | proxy/conf_macros.m4 | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/proxy/conf_macros.m4 b/proxy/conf_macros.m4 index f2d3755..a92c24a 100644 --- a/proxy/conf_macros.m4 +++ b/proxy/conf_macros.m4 @@ -46,12 +46,12 @@ AC_DEFUN([WITH_PUBCONF_PATH], AC_DEFUN([WITH_SOCKET_NAME], [ AC_ARG_WITH([socket-name], [AC_HELP_STRING([--with-socket-name=PATH], - [Name of the GSS Proxy socket file [/var/run/gssproxy.sock]] + [Name of the GSS Proxy socket file [/var/lib/gssproxy/default.sock]] ) ] ) - gp_socket_name="\"VARDIR\"/run/gssproxy.sock" - socketname="${localstatedir}/run/gssproxy.sock" + gp_socket_name="\"VARDIR\"/lib/gssproxy/default.sock" + socketname="${localstatedir}/lib/gssproxy/default.sock" if test x"$with_socket_name" != x; then gp_socket_name=$with_socket_name socketname=$with_socket_name |