blob: 61ee623eb7c478c4c75fb7e88115a25431ea507f (
plain)
1
2
3
4
5
6
7
8
|
#!/bin/bash
cd /etc/ipcam_rtsp2hls.conf.d/
for f in *-low.conf; do
f=${f/-low.conf/}
echo "restarting $f"
systemctl restart ipcam_rtsp2hls@${f}
systemctl restart ipcam_rtsp2hls@${f}-low
done
|