We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents a9702e4 + 848d969 commit 6e98ea3Copy full SHA for 6e98ea3
puppetdb/conf.d/puppetdb.conf
@@ -1,4 +1,4 @@
1
puppetdb: {
2
disable-update-checking: 'true'
3
- certificate-allowlist: '/etc/puppetlabs/puppetdb/conf.d/certificate-allowlist'
+ certificate-allowlist: certificate-allowlist
4
}
puppetdb/docker-entrypoint.d/30-certificate-allowlist.sh
@@ -3,9 +3,9 @@
if [ "$PUPPETDB_CERTIFICATE_ALLOWLIST" != "" ]; then
IFS=','
5
for cert in $PUPPETDB_CERTIFICATE_ALLOWLIST; do
6
- echo $cert >> /etc/puppetlabs/puppetdb/conf.d/certificate-allowlist
+ echo $cert >> /opt/puppetlabs/server/apps/puppetdb/certificate-allowlist
7
done
8
else
9
- touch /etc/puppetlabs/puppetdb/conf.d/certificate-allowlist
+ touch /opt/puppetlabs/server/apps/puppetdb/certificate-allowlist
10
fi
11
0 commit comments