main: make options be in one line and print them

This commit is contained in:
Dawid Dziurla 2020-03-21 17:10:07 +01:00
parent 71c08da46c
commit fa2afcbd6b
No known key found for this signature in database
GPG Key ID: 7B6D8368172E9B0B

View File

@ -17,6 +17,11 @@ if test -n "$key"; then
chmod 400 ~/.ssh/id_rsa chmod 400 ~/.ssh/id_rsa
fi fi
if test -n "$options"; then
options="$(echo "$options" | tr '\n' ' ')"
echo "OPTIONS: $options"
fi
export ANSIBLE_HOST_KEY_CHECKING=False export ANSIBLE_HOST_KEY_CHECKING=False
export ANSIBLE_FORCE_COLOR=True export ANSIBLE_FORCE_COLOR=True