From 46809286a4b906b1015624b51e60bba88c1caa95 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: #8 --- 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