ansible: add missing host flag in pjsua_call script

This commit is contained in:
ionutboangiu
2025-11-04 13:55:55 +02:00
committed by Dan Christian Bogos
parent 403295c52b
commit 007212b783

View File

@@ -9,7 +9,7 @@ VERBOSE=false
DRYRUN=false
# Parse command line options
OPTS=$(getopt -o f:t:d:p:r:P:vDh --long from:,to:,dur:,port:,registrar:,passwd:,verbose,dryrun,help -n "$(basename "$0")" -- "$@")
OPTS=$(getopt -o f:t:d:H:p:r:P:vDh --long from:,to:,dur:,host:,port:,registrar:,passwd:,verbose,dryrun,help -n "$(basename "$0")" -- "$@")
if [ $? -ne 0 ]; then
echo "Failed to parse options." >&2
exit 1
@@ -104,4 +104,4 @@ if [ "${VERBOSE}" = true ]; then
fi
if [ "${DRYRUN}" = false ]; then
${cmd}
fi
fi