mirror of
https://github.com/RangeNetworks/openbts.git
synced 2025-10-23 07:42:01 +00:00
git-svn-id: http://wush.net/svn/range/software/public/openbts/branches/P3.1@6518 19bc5d8c-e614-43d4-8b26-e1612bc8e597
15 lines
382 B
Bash
Executable File
15 lines
382 B
Bash
Executable File
#!/bin/bash
|
|
|
|
# This script goes into ~openbts/.
|
|
|
|
#Stop asterisk if it's currently running
|
|
sudo service asterisk status | grep -iqP "\bis running\b" && sudo service asterisk stop
|
|
|
|
echo "Killing SMQueue"
|
|
sudo killall runloop.smqueue.sh
|
|
echo "Killing the Subscriber Registry"
|
|
sudo killall runloop.sipauthserve.sh
|
|
echo "Killing OpenBTS and Transceiver"
|
|
sudo killall runloop.OpenBTS.sh
|
|
|