lh | 9ed821d | 2023-04-07 01:36:19 -0700 | [diff] [blame] | 1 | # systemd service file for nscd |
2 | |||||
3 | [Unit] | ||||
4 | Description=Name Service Cache Daemon | ||||
5 | |||||
6 | [Service] | ||||
7 | Type=forking | ||||
8 | ExecStart=/usr/sbin/nscd | ||||
9 | ExecStop=/usr/sbin/nscd --shutdown | ||||
10 | ExecReload=/usr/sbin/nscd -i passwd | ||||
11 | ExecReload=/usr/sbin/nscd -i group | ||||
12 | ExecReload=/usr/sbin/nscd -i hosts | ||||
13 | ExecReload=/usr/sbin/nscd -i services | ||||
14 | ExecReload=/usr/sbin/nscd -i netgroup | ||||
15 | Restart=always | ||||
16 | PIDFile=/run/nscd/nscd.pid | ||||
17 | |||||
18 | [Install] | ||||
19 | WantedBy=multi-user.target |