Fixed a mistake i made in the example restart script

master
Denny-89 2023-07-12 22:03:12 +02:00
rodzic 5f014a4a70
commit 0bf577c8e5
1 zmienionych plików z 1 dodań i 1 usunięć

@ -147,7 +147,7 @@ Create a file named `restart-changedetection.sh` with your favorite text editor,
ps -C changedetection u|grep -v PID|awk '$6 > 240000 {print $2};'|while read pid
do
kill -9 $pid
systemctl start changedetection.service
systemctl restart changedetection.service
done
```