mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 22:10:13 +00:00
19 lines
398 B
SYSTEMD
19 lines
398 B
SYSTEMD
|
# systemd service file for nscd
|
||
|
|
||
|
[Unit]
|
||
|
Description=Name Service Cache Daemon
|
||
|
|
||
|
[Service]
|
||
|
Type=simple
|
||
|
ExecStart=/usr/sbin/nscd --foreground
|
||
|
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
|