/lib/systemd/system/syncache.service is in syncache 1.4-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | [Unit]
Description=SynCache dRuby object cache server
Documentation=man:syncache-drb
After=network.target
Before=apache2.service lighttpd.service nginx.service
[Service]
Type=forking
PIDFile=/run/syncache/syncache.pid
ExecStartPre=/usr/bin/install -o syncache -g syncache -m 755 -d /run/syncache
ExecStart=/usr/bin/syncache-drb --pidfile /run/syncache/syncache.pid --user syncache --flush-delay 5
ExecReload=/bin/kill -HUP $MAINPID
EnvironmentFile=-/etc/default/syncache
[Install]
WantedBy=multi-user.target
|