From e268723dd57be70fbe8f5b99345a83628633cd52 Mon Sep 17 00:00:00 2001 From: Mark Dechiaro Date: Sat, 10 Feb 2024 08:04:08 -0600 Subject: [PATCH] Fix typo in filename Closes: #68 Signed-off-by: Mark Dechiaro --- puppetserver/docker-entrypoint.d/89-csr_attributes.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/puppetserver/docker-entrypoint.d/89-csr_attributes.rb b/puppetserver/docker-entrypoint.d/89-csr_attributes.rb index 714b3baa..1a5419d2 100755 --- a/puppetserver/docker-entrypoint.d/89-csr_attributes.rb +++ b/puppetserver/docker-entrypoint.d/89-csr_attributes.rb @@ -5,7 +5,7 @@ begin csr_yaml = YAML.dump(JSON.load(ENV['CSR_ATTRIBUTES'])) - File.open('/etc/puppetlabs/puppet/csr_attrbitues.yaml', 'w') do |file| + File.open('/etc/puppetlabs/puppet/csr_attributes.yaml', 'w') do |file| file.write(csr_yaml) end rescue => error