Print out user configs as we template them

This commit is contained in:
Elliot Saba 2020-04-02 16:57:56 -07:00
parent dd581b58b6
commit 5fcae395a3
1 changed files with 1 additions and 0 deletions

View File

@ -112,6 +112,7 @@ template_user_configs() {
echo "no ${SOURCE_DIR}, nothing to do."
else
for conf in ${SOURCE_DIR}/*.conf; do
echo " -> ${conf}"
envsubst "${DENV}" <"${conf}" > "${TARGET_DIR}/$(basename ${conf})"
done
fi