From 0d39e7a43a585a46e9cb6c755d97003470c5bd54 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Mon, 12 Dec 2011 15:43:17 -0500 Subject: Intial skeleton gssproxy daemon --- proxy/systemd/gssproxy.service | 14 ++++++++++++++ proxy/systemd/gssproxy.service.in | 14 ++++++++++++++ 2 files changed, 28 insertions(+) create mode 100644 proxy/systemd/gssproxy.service create mode 100644 proxy/systemd/gssproxy.service.in (limited to 'proxy/systemd') diff --git a/proxy/systemd/gssproxy.service b/proxy/systemd/gssproxy.service new file mode 100644 index 0000000..ab25699 --- /dev/null +++ b/proxy/systemd/gssproxy.service @@ -0,0 +1,14 @@ +[Unit] +Description=GSSAPI Proxy Daemon +# GSSPROXY will not be started until syslog is +After=syslog.target + +[Service] +ExecStart=${exec_prefix}/sbin/gssproxy -D -f +# These two should be used with traditional UNIX forking daemons +# consult systemd.service(5) for more details +Type=forking +PIDFile=${prefix}/var/run/gssproxy.pid + +[Install] +WantedBy=multi-user.target diff --git a/proxy/systemd/gssproxy.service.in b/proxy/systemd/gssproxy.service.in new file mode 100644 index 0000000..996b60d --- /dev/null +++ b/proxy/systemd/gssproxy.service.in @@ -0,0 +1,14 @@ +[Unit] +Description=GSSAPI Proxy Daemon +# GSSPROXY will not be started until syslog is +After=syslog.target + +[Service] +ExecStart=@sbindir@/gssproxy -D -f +# These two should be used with traditional UNIX forking daemons +# consult systemd.service(5) for more details +Type=forking +PIDFile=@localstatedir@/run/gssproxy.pid + +[Install] +WantedBy=multi-user.target -- cgit