Files
stream-factory/scripts/restart_stream.sh

14 lines
361 B
Bash
Executable File

#!/bin/bash
echo "=== Restart CNEWS $(date) ===" >> /opt/stream-factory/logs/restart_stream.log
systemctl stop cnews-http.service
systemctl stop http-hls.service
rm -f /opt/stream-factory/hls/*
systemctl start http-hls.service
sleep 3
systemctl start cnews-http.service
echo "=== Restart terminé $(date) ===" >> /opt/stream-factory/logs/restart_stream.log