From 907ffde715fe31a79bd111cb6ae2614036c202f6 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Mon, 9 Nov 2015 12:41:24 -0200 Subject: Deploy: support for default.pp --- bin/deploy | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'bin') diff --git a/bin/deploy b/bin/deploy index 5d3361b..289f86c 100755 --- a/bin/deploy +++ b/bin/deploy @@ -15,10 +15,15 @@ else FQDN="`cat /etc/hostname`" fi -# Check for manifest +# Set manifest PUPPET_MANIFEST="$BASEDIR/puppet/manifests/nodes/$FQDN.pp" if [ ! -e "$PUPPET_MANIFEST" ]; then - echo "file not found: $PUPPET_MANIFEST" + PUPPET_MANIFEST="$BASEDIR/puppet/manifests/nodes/default.pp" +fi + +# Check manifest +if [ ! -e "$PUPPET_MANIFEST" ]; then + echo "no manifest found for $FQDN" exit 1 fi -- cgit v1.2.3