From 319b960e0a093dd2909bf1d06b6ef1bf17b94aca Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Mon, 25 May 2020 13:03:22 -0300 Subject: Fix: deploy: get FQDN from /etc/hostname --- bin/deploy | 18 ++++++++++-------- 1 file changed, 10 insertions(+), 8 deletions(-) diff --git a/bin/deploy b/bin/deploy index 518e03a..f23bc42 100755 --- a/bin/deploy +++ b/bin/deploy @@ -7,12 +7,17 @@ DIRNAME="`dirname $0`" BASEDIR="$DIRNAME/.." +# Install dependencies +source $DIRNAME/dependencies + # Determine hostname -if [ ! -z "$1" ]; then - FQDN="$1" -else - FQDN="`cat /etc/hostname`" -fi +#if [ ! -z "$1" ]; then +# FQDN="$1" +#else +# FQDN="`cat /etc/hostname`" +#fi +#FQDN="`facter fqdn`" +FQDN="`cat /etc/hostname`" # Set manifest PUPPET_MANIFEST="$BASEDIR/manifests/nodes/$FQDN.pp" @@ -26,9 +31,6 @@ if [ ! -e "$PUPPET_MANIFEST" ]; then exit 1 fi -# Install dependencies -source $DIRNAME/dependencies - # Ensure additional dependencies are installed. for package in $DEPLOY_DEPENDENCIES; do provision_package $package -- cgit v1.2.3