aboutsummaryrefslogtreecommitdiffstats
path: root/bin/dev_tools/nohup_start.sh
blob: 71a77232c0a304ac359e8fc90279115f42a0c9be (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/bash

# SRTool helper script to start the instance with hohup

if [ -z "$SRT_PORT" ] ; then
    SRT_PORT=9000
fi

# Accept parameters (like 'noautoupdate')
mv -f nohup.out nohup_prev.out
nohup ./bin/srt start webport=0.0.0.0:$SRT_PORT $*
cat nohup.out