7 lines
174 B
Bash
7 lines
174 B
Bash
#!/bin/bash
|
|
if [ "$1" == "" ] ; then
|
|
_cmd="status"
|
|
else
|
|
_cmd=$1
|
|
fi
|
|
systemctl $_cmd osmo-stp osmo-bsc osmo-msc osmo-hlr osmo-mgw osmo-mgw-msc osmo-sgsn osmo-sip-connector
|