124b1a2727
Prior to this, the config_version script just showed the commit ID of the version of code being compiled. This commit includes the compiling Puppet master's hostname and environment name in the config_version. This is very useful for debugging when a Puppet master is failing and you have multiple masters behind a load balancer. The output of config_version now looks like this: pupmaster01-production-ac9785273a10
13 lines
377 B
Bash
Executable File
13 lines
377 B
Bash
Executable File
#!/bin/bash
|
|
if [ -e $1/$2/.r10k-deploy.json ]
|
|
then
|
|
/opt/puppetlabs/puppet/bin/ruby $1/$2/scripts/code_manager_config_version.rb $1 $2
|
|
elif [ -e /opt/puppetlabs/server/pe_version ]
|
|
then
|
|
/opt/puppetlabs/puppet/bin/ruby $1/$2/scripts/config_version.rb $1 $2
|
|
else
|
|
/usr/bin/git --version > /dev/null 2>&1 &&
|
|
/usr/bin/git --git-dir $1/$2/.git rev-parse HEAD ||
|
|
date +%s
|
|
fi
|