Print more env variables

This commit is contained in:
phahulin 2017-06-30 23:11:36 +03:00 committed by GitHub
parent a1cff14fb5
commit 28f22b3808
1 changed files with 8 additions and 1 deletions

View File

@ -13,8 +13,15 @@ echo "===== memory usage info:"
free -m
EXT_IP="$(curl ifconfig.co)"
echo "===== external ip: ${EXT_IP}"
echo "===== environmental variables:"
echo "===== printenv:"
printenv
echo "===== env:"
env
echo "===== set:"
set
echo "===== declare -p:"
declare -p
# script parameters
INSTALL_DOCKER_VERSION="17.03.1~ce-0~ubuntu-xenial"