Class: Puppet::Application::Master

Inherits:
Puppet::Application show all
Defined in:
lib/puppet/application/master.rb

Constant Summary

Constants inherited from Puppet::Application

DOCPATTERN

Instance Attribute Summary

Attributes inherited from Puppet::Application

#command_line, #options

Instance Method Summary collapse

Methods inherited from Puppet::Application

[], banner, clear!, clear?, controlled_run, exit, find, #handlearg, #help, #initialize, interrupted?, #name, option, option_parser_commands, #parse_options, restart!, restart_requested?, #run, run_mode, #set_run_mode, should_not_parse_config, should_parse_config, should_parse_config?, #should_parse_config?, stop!, stop_requested?

Methods included from Util

activerecord_version, benchmark, chuser, classproxy, #execfail, #execpipe, execute, logmethods, memory, proxy, recmkdir, secure_open, symbolize, symbolizehash, symbolizehash!, synchronize_on, thinmark, #threadlock, which, withumask

Methods included from Util::POSIX

#get_posix_field, #gid, #idfield, #methodbyid, #methodbyname, #search_posix_field, #uid

Constructor Details

This class inherits a constructor from Puppet::Application

Instance Method Details

#compileObject

Raises:

  • (ArgumentError)


50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
# File 'lib/puppet/application/master.rb', line 50

def compile
  Puppet::Util::Log.newdestination :console
  raise ArgumentError, "Cannot render compiled catalogs without pson support" unless Puppet.features.pson?
  begin
    unless catalog = Puppet::Resource::Catalog.find(options[:node])
      raise "Could not compile catalog for #{options[:node]}"
    end

    jj catalog.to_resource
  rescue => detail
    $stderr.puts detail
    exit(30)
  end
  exit(0)
end

#mainObject



76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# File 'lib/puppet/application/master.rb', line 76

def main
  require 'etc'
  require 'puppet/file_serving/content'
  require 'puppet/file_serving/metadata'

  xmlrpc_handlers = [:Status, :FileServer, :Master, :Report, :Filebucket]

  xmlrpc_handlers << :CA if Puppet[:ca]

  # Make sure we've got a localhost ssl cert
  Puppet::SSL::Host.localhost

  # And now configure our server to *only* hit the CA for data, because that's
  # all it will have write access to.
  Puppet::SSL::Host.ca_location = :only if Puppet::SSL::CertificateAuthority.ca?

  if Puppet.features.root?
    begin
      Puppet::Util.chuser
    rescue => detail
      puts detail.backtrace if Puppet[:trace]
      $stderr.puts "Could not change user to #{Puppet[:user]}: #{detail}"
      exit(39)
    end
  end

  unless options[:rack]
    require 'puppet/network/server'
    @daemon.server = Puppet::Network::Server.new(:xmlrpc_handlers => xmlrpc_handlers)
    @daemon.daemonize if Puppet[:daemonize]
  else
    require 'puppet/network/http/rack'
    @app = Puppet::Network::HTTP::Rack.new(:xmlrpc_handlers => xmlrpc_handlers, :protocols => [:rest, :xmlrpc])
  end

  Puppet.notice "Starting Puppet master version #{Puppet.version}"

  unless options[:rack]
    @daemon.start
  else
    return @app
  end
end

#parseonlyObject



66
67
68
69
70
71
72
73
74
# File 'lib/puppet/application/master.rb', line 66

def parseonly
  begin
    Puppet::Node::Environment.new(Puppet[:environment]).known_resource_types
  rescue => detail
    Puppet.err detail
    exit 1
  end
  exit(0)
end

#preinitObject



28
29
30
31
32
33
34
35
36
37
38
# File 'lib/puppet/application/master.rb', line 28

def preinit
  Signal.trap(:INT) do
    $stderr.puts "Cancelling startup"
    exit(0)
  end

  # Create this first-off, so we have ARGV
  require 'puppet/daemon'
  @daemon = Puppet::Daemon.new
  @daemon.argv = ARGV.dup
end

#run_commandObject



40
41
42
43
44
45
46
47
48
# File 'lib/puppet/application/master.rb', line 40

def run_command
  if options[:node]
    compile
  elsif Puppet[:parseonly]
    parseonly
  else
    main
  end
end

#setupObject



120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
# File 'lib/puppet/application/master.rb', line 120

def setup
  # Handle the logging settings.
  if options[:debug] or options[:verbose]
    if options[:debug]
      Puppet::Util::Log.level = :debug
    else
      Puppet::Util::Log.level = :info
    end

    unless Puppet[:daemonize] or options[:rack]
      Puppet::Util::Log.newdestination(:console)
      options[:setdest] = true
    end
  end

  Puppet::Util::Log.newdestination(:syslog) unless options[:setdest]

  exit(Puppet.settings.print_configs ? 0 : 1) if Puppet.settings.print_configs?

  Puppet.settings.use :main, :master, :ssl, :metrics

  # Cache our nodes in yaml.  Currently not configurable.
  Puppet::Node.cache_class = :yaml

  # Configure all of the SSL stuff.
  if Puppet::SSL::CertificateAuthority.ca?
    Puppet::SSL::Host.ca_location = :local
    Puppet.settings.use :ca
    Puppet::SSL::CertificateAuthority.instance
  else
    Puppet::SSL::Host.ca_location = :none
  end
end