Skip to content

Commit

Permalink
fix: set path to puppet bin
Browse files Browse the repository at this point in the history
  • Loading branch information
rwaffen committed Nov 21, 2024
1 parent 883e0a7 commit 73b6175
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions puppetserver/docker-entrypoint.d/50-set-certname.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@
set -e

if [ -n "${PUPPETSERVER_HOSTNAME}" ]; then
puppet config set server "$PUPPETSERVER_HOSTNAME"
/usr/bin/puppet config set server "$PUPPETSERVER_HOSTNAME"
fi

if [ -n "${CERTNAME}" ]; then
puppet config set certname "$CERTNAME"
/usr/bin/puppet config set certname "$CERTNAME"
fi

0 comments on commit 73b6175

Please sign in to comment.