You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ngcpcfg/helper/tt2-wrapper

18 lines
317 B

#!/bin/bash
if [ -r /var/run/ngcpcfg.port ] ; then
port=$(cat /var/run/ngcpcfg.port)
else
echo "ERROR: Couldn't read file /var/run/ngcpcfg.port" >&2
exit 1
fi
if ! [[ $port =~ [0-9]+ ]] ; then
echo "ERROR: Wrong ngcpcfg tt2-daemon port: $port" >&2
exit 1
fi
echo "$@" | netcat localhost "$port"
exit $?