Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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