module R10K::CLI::Puppetfile::Check
Public Class Methods
command()
click to toggle source
# File lib/r10k/cli/puppetfile.rb, line 42 def self.command @cmd ||= Cri::Command.define do name 'check' usage 'check' summary 'Try and load the Puppetfile to verify the syntax is correct.' option nil, :puppetfile, 'Path to Puppetfile', argument: :required runner R10K::Action::Puppetfile::CriRunner.wrap(R10K::Action::Puppetfile::Check) end end