This is the mail archive of the
libc-alpha@sourceware.org
mailing list for the glibc project.
[PATCH] Add systemd unit file for nscd
- From: Allan McRae <allan at archlinux dot org>
- To: libc-alpha at sourceware dot org
- Date: Tue, 30 Apr 2013 16:16:42 +1000
- Subject: [PATCH] Add systemd unit file for nscd
Provide an example systemd unit and tmpfile for running nscd.
---
nscd/nscd.service | 17 +++++++++++++++++
nscd/nscd.tmpfiles | 1 +
2 files changed, 18 insertions(+)
create mode 100644 nscd/nscd.service
create mode 100644 nscd/nscd.tmpfiles
I have followed the convention of nscd.conf and not added a configure
option to install these files, although I would not mind if that
changed.
ChangeLog:
2013-04-30 Allan McRae <allan@archlinux.org>
* nscd/nscd.service: New file.
* nscd/nscd.tmpfiles: New file.
diff --git a/nscd/nscd.service b/nscd/nscd.service
new file mode 100644
index 0000000..bc80a07
--- /dev/null
+++ b/nscd/nscd.service
@@ -0,0 +1,17 @@
+[Unit]
+Description=Name Service Cache Daemon
+After=syslog.target
+
+[Service]
+Type=forking
+ExecStart=/usr/sbin/nscd
+ExecStop=/usr/sbin/nscd --shutdown
+ExecReload=/usr/sbin/nscd -i passwd
+ExecReload=/usr/sbin/nscd -i group
+ExecReload=/usr/sbin/nscd -i hosts
+ExecReload=/usr/sbin/nscd -i services
+Restart=always
+PIDFile=/run/nscd/nscd.pid
+
+[Install]
+WantedBy=multi-user.target
diff --git a/nscd/nscd.tmpfiles b/nscd/nscd.tmpfiles
new file mode 100644
index 0000000..8a24a78
--- /dev/null
+++ b/nscd/nscd.tmpfiles
@@ -0,0 +1 @@
+d /run/nscd 0755 root root
--
1.8.2.2