zoneminder/misc/zoneminder.service.in

20 lines
513 B
SYSTEMD
Raw Normal View History

2014-08-10 21:47:11 +08:00
# ZoneMinder systemd unit file
# This file is intended to work with all Linux distributions
[Unit]
Description=ZoneMinder CCTV recording and security system
After=network.target mysqld.service httpd.service
Requires=mysqld.service httpd.service
[Service]
User=@WEB_USER@
Type=forking
ExecStart=@BINDIR@/zmpkg.pl start
ExecReload=@BINDIR@/zmpkg.pl restart
ExecStop=/bin/bash -c '[[ "$(@BINDIR@/pgrep zmdc.pl)" > 0 ]] && @BINDIR@/zmpkg.pl stop'
2014-09-12 08:20:09 +08:00
PIDFile="@ZM_RUNDIR@/zm.pid"
2014-08-10 21:47:11 +08:00
[Install]
WantedBy=multi-user.target