dev/provisioning/modules/puppi/files/scripts/header
author ymh <ymh.work@gmail.com>
Fri, 05 Feb 2016 22:41:10 +0100
changeset 118 dbcacab69cfc
parent 28 b0b56e0f8c7f
permissions -rwxr-xr-x
upgrade ember version to v2.3.1 for bo-client

configfile="/etc/puppi/puppi.conf"

# Load general configurations
if [ ! -f $configfile ] ; then
    echo "Config file: $configfile not found"
    exit 2
else
    . $configfile
    . $scriptsdir/functions
fi

# Load project runtime configuration
projectconfigfile="$workdir/$project/config"
if [ ! -f $projectconfigfile ] ; then
    echo "Project runtime config file: $projectconfigfile not found"
    exit 2
else
    . $projectconfigfile
fi

# Activate debug 
case "$debug" in
    yes) set -x  ;;
    full) set -xv  ;;
esac