mirror of
https://gitea.osmocom.org/cellular-infrastructure/osmo-mgw.git
synced 2025-11-02 13:03:33 +00:00
9 lines
111 B
Bash
Executable File
9 lines
111 B
Bash
Executable File
#!/bin/sh
|
|
|
|
while true;
|
|
do
|
|
echo "Kill the osmo-bsc"
|
|
/usr/bin/kill -s SIGUSR2 `pidof osmo-bsc`
|
|
sleep 58s
|
|
done
|