2018-11-19 11:45:45 -05:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
set -eux
|
|
|
|
|
|
|
|
# ignore empty env var and use default
|
|
|
|
# shellcheck disable=SC1007
|
2019-01-24 19:25:06 -08:00
|
|
|
ANSIBLE_TIMEOUT= ansible -m ping testhost -i ../../inventory "$@"
|
2018-11-19 11:45:45 -05:00
|
|
|
|
|
|
|
# env var is wrong type, this should be a fatal error pointing at the setting
|
2019-01-24 19:25:06 -08:00
|
|
|
ANSIBLE_TIMEOUT='lola' ansible -m ping testhost -i ../../inventory "$@" 2>&1|grep 'Invalid type for configuration option setting: DEFAULT_TIMEOUT'
|