# File lib/foreman/export/upstart.rb, line 6 def export super (Dir["#{location}/#{app}-*.conf"] << "#{location}/#{app}.conf").each do |file| clean file end write_template "upstart/master.conf.erb", "#{app}.conf", binding engine.each_process do |name, process| next if engine.formation[name] < 1 write_template "upstart/process_master.conf.erb", "#{app}-#{name}.conf", binding 1.upto(engine.formation[name]) do |num| port = engine.port_for(process, num) write_template "upstart/process.conf.erb", "#{app}-#{name}-#{num}.conf", binding end end end
Generated with the Darkfish Rdoc Generator 2.