Skip to content

Commit

Permalink
Merge pull request #165 from bastelfreak/foo
Browse files Browse the repository at this point in the history
Raise warning if hiera check is called but disabled
  • Loading branch information
bastelfreak committed Mar 12, 2024
2 parents 2c1b8fa + b9d7b46 commit a7b23aa
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/puppet-syntax/tasks/puppet-syntax.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def filelist_hiera_yaml
end

def initialize(*_args)
desc 'Syntax check Puppet manifests and templates'
desc 'Syntax check for Puppet manifests, templates and Hiera'
task syntax: [
'syntax:manifests',
'syntax:templates',
Expand Down Expand Up @@ -69,6 +69,7 @@ def initialize(*_args)
namespace :hiera do
task :yaml do |t|
warn "---> #{t.name}"
warn "#{t.name} was called, but PuppetSyntax.check_hiera_keys is false. hiera syntax won't be checked" unless PuppetSyntax.check_hiera_keys
c = PuppetSyntax::Hiera.new
errors = c.check(filelist_hiera_yaml)
$stdout.puts "#{errors.join("\n")}\n" unless errors.empty?
Expand Down

0 comments on commit a7b23aa

Please sign in to comment.