bsc: Add script to hang up the MSC connection every 58s

This commit is contained in:
Holger Hans Peter Freyther 2010-11-15 14:35:58 +01:00
parent e9f7a0d3b9
commit 09a925b117
1 changed files with 8 additions and 0 deletions

View File

@ -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