Simple script for looping the OpenBTS process to catch crashes and restarts.

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@3858 19bc5d8c-e614-43d4-8b26-e1612bc8e597
This commit is contained in:
Donald Kirker
2012-06-28 21:02:07 +00:00
parent 7e34fd52d6
commit 3011a608a1

4
apps/runloop.OpenBTS.sh Executable file
View File

@@ -0,0 +1,4 @@
#!/bin/sh
# A script to restart and just keep OpenBTS running.
while true; do killall transceiver; killall wget; sleep 2; ./OpenBTS; done