mirror of
https://github.com/YunoHost-Apps/monitorix_ynh.git
synced 2024-09-03 19:46:06 +02:00
8 lines
206 B
Text
8 lines
206 B
Text
#/bin/bash
|
|
|
|
if systemctl is-active __APP__.service --quiet; then
|
|
systemctl stop monitorix.service
|
|
sleep 1
|
|
pkill -f "monitorix-httpd listening on" || true
|
|
systemctl start __APP__.service
|
|
fi
|