daad0dffa2
-re-added recordloop as a thread within the app. -the app no longer use mutiple services and will instead fully operate in a single master service. -build/install.py will now install the app as a single service. -added/updated -s, -r and -q options to manage the single master service.
16 lines
266 B
Desktop File
16 lines
266 B
Desktop File
[Unit]
|
|
Description=$app_name Daemon
|
|
After=network.target
|
|
|
|
[Service]
|
|
Type=simple
|
|
User=$app_target
|
|
Restart=on-failure
|
|
RestartSec=5
|
|
TimeoutStopSec=infinity
|
|
ExecStart=/usr/bin/env $app_target -d
|
|
ExecStop=/usr/bin/env $app_target -q
|
|
|
|
[Install]
|
|
WantedBy=multi-user.target
|