aboutsummaryrefslogtreecommitdiffstats
path: root/openbsc/contrib
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <zecke@selfish.org>2010-11-15 14:35:58 +0100
committerHolger Hans Peter Freyther <zecke@selfish.org>2010-11-15 20:06:50 +0100
commit09a925b117593c981b1986b64854c5dd12331a16 (patch)
treec32133a6f06125fd30a5c01c8a103fbb892d74b4 /openbsc/contrib
parente9f7a0d3b96cb8f2d35ce96fb9172757339813f7 (diff)
bsc: Add script to hang up the MSC connection every 58s
Diffstat (limited to 'openbsc/contrib')
-rwxr-xr-xopenbsc/contrib/bsc-test/msc.sh8
1 files changed, 8 insertions, 0 deletions
diff --git a/openbsc/contrib/bsc-test/msc.sh b/openbsc/contrib/bsc-test/msc.sh
new file mode 100755
index 000000000..bec011d4c
--- /dev/null
+++ b/openbsc/contrib/bsc-test/msc.sh
@@ -0,0 +1,8 @@
+#!/bin/sh
+
+while true;
+do
+ echo "Kill the osmo-bsc"
+ /usr/bin/kill -s SIGUSR2 `pidof osmo-bsc`
+ sleep 58s
+done