19 lines
507 B
SYSTEMD
19 lines
507 B
SYSTEMD
# ZoneMinder systemd unit file
|
|
# This file is intended to work with debian distributions
|
|
|
|
[Unit]
|
|
Description=ZoneMinder CCTV recording and security system
|
|
After=network.target mysql.service apache2.service
|
|
Requires=mysql.service apache2.service
|
|
|
|
[Service]
|
|
User=www-data
|
|
Type=forking
|
|
ExecStart=/usr/bin/zmpkg.pl start
|
|
ExecReload=/usr/bin/zmpkg.pl restart
|
|
ExecStop=/bin/bash -c '[[ "$(/usr/bin/pgrep zmdc.pl)" > 0 ]] && /usr/bin/zmpkg.pl stop'
|
|
PIDFile=/var/run/zm/zm.pid
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|