Method: Puppet::Application#main

Defined in:
lib/puppet/application.rb

#mainvoid

This method returns an undefined value.

This method must be overridden and perform whatever action is required for the application. The ‘command_line` reader contains the actions and arguments.

Raises:

  • (NotImplementedError)


431
432
433
# File 'lib/puppet/application.rb', line 431

def main
  raise NotImplementedError, _("No valid command or main")
end