get_real_instance_domain.sh: Fix optional curl arguments.

This commit is contained in:
tastytea 2020-06-08 08:03:51 +02:00
parent 1514ecf12b
commit afce4cdea3
Signed by: tastytea
GPG Key ID: CFC39497F1B26E07
1 changed files with 2 additions and 1 deletions

View File

@ -4,7 +4,7 @@
# running on <Your host> with access logging activated in order for this to
# work.
# Version: 2019-08-17_1
# Version: 2020-06-08_1
if [ -z "${2}" ]; then
echo "Usage: ${0} <Your host> <Remote host> [additional curl options]" >&2
@ -13,6 +13,7 @@ fi
your_host="${1}"
remote_host="${2}"
shift 2
if command -v md5sum > /dev/null; then
uuid="$(date | md5sum | cut -d' ' -f 1)"