From: Silvio Rhatto Date: Mon, 25 May 2020 16:03:22 +0000 (-0300) Subject: Fix: deploy: get FQDN from /etc/hostname X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=319b960e0a093dd2909bf1d06b6ef1bf17b94aca;p=puppet-bootstrap.git Fix: deploy: get FQDN from /etc/hostname --- 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