You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 12, 2021. It is now read-only.
function check_hiera_symlink {
if [ $(rpm -q hiera | wc -l) -gt 0 ]
then
echo -e "hiera has been installed"
if [ ! -L /etc/puppet/hiera.yaml ]
then
printWarning "Missing hiera symlink from /etc/hiera.yaml -> /etc/puppet/hiera.yaml"
echo -n "Would you like me to create it ? [y|N]:"
read yesno
if [ ${yesno} == 'y' ]
then
ln -s /etc/hiera.yaml /etc/puppet/hiera.yaml
fi
else
printOK "Hiera symlink exists"
fi
fi
}
The text was updated successfully, but these errors were encountered:
https://github.com/boogiespook/sat6_healthCheck/blob/master/sat6_healthCheck.sh#L90-L107
The text was updated successfully, but these errors were encountered: