14 lines
267 B
Bash
14 lines
267 B
Bash
#!/bin/bash
|
|
|
|
input=$1
|
|
|
|
if [[ "$input" == "start" ]]; then
|
|
sudo /bin/systemctl start srs
|
|
sleep 2
|
|
sudo /bin/systemctl start ffplayout
|
|
elif [[ "$input" == "stop" ]]; then
|
|
sudo /bin/systemctl stop srs
|
|
sleep 2
|
|
sudo /bin/systemctl stop ffplayout
|
|
fi
|