#!/bin/bash
#
# Loads the ci-utils conf by sourcing /usr/lib/ci-utils/source_conf.sh
# and lists some popular conf values

#test ${CIU_VERBOSITY} -gt 2 echo "DEBUG: Sourcing /usr/lib/ci-utils/source_conf.sh ..."
. /usr/lib/ci-utils/source_conf.sh

echo ""

echo "General CI-Utils configuration:"
echo "CI Environement (default: empty): '${CIU_ENVIRONMENT}'"
echo "CI Verbosity (default: 1): ${CIU_VERBOSITY}"
test ${CIU_VERBOSITY} -gt 2 && echo "CI Debuging: ON" || echo "CI Debuging: OFF"

echo ""

echo "Docker (proxy) registries:"
echo ""
echo "Dockerhub (proxy) registry (default: empty): '${CIU_DOCKER_REGISTRY_DOCKERHUB}'"

echo ""

echo "More to come, have a nice day."

