#!/usr/local/bin/ruby25

begin
  require 'puppet/util/command_line'
  Puppet::Util::CommandLine.new.execute
rescue LoadError => e
  $stderr.puts e.message
  exit(1)
end
