Class: Foreman::Export::Systemd

Inherits:
Base
  • Object
show all
Defined in:
lib/foreman/export/systemd.rb

Instance Attribute Summary

Attributes inherited from Base

#engine, #formation, #location, #options, #port

Instance Method Summary collapse

Methods inherited from Base

#app, #initialize, #log, procfile, #run, #template, #user

Constructor Details

This class inherits a constructor from Foreman::Export::Base

Instance Method Details

#exportObject



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# File 'lib/foreman/export/systemd.rb', line 6

def export
  super

  Dir["#{location}/#{app}*.target"].concat(Dir["#{location}/#{app}*.service"]).each do |file|
    clean file
  end

  process_master_names = []

  engine.each_process do |name, process|
    next if engine.formation[name] < 1

    process_names = []

    1.upto(engine.formation[name]) do |num|
      port = engine.port_for(process, num)
      write_template "systemd/process.service.erb", "#{app}-#{name}-#{num}.service", binding
      process_names << "#{app}-#{name}-#{num}.service"
    end

    write_template "systemd/process_master.target.erb", "#{app}-#{name}.target", binding
    process_master_names << "#{app}-#{name}.target"
  end

  write_template "systemd/master.target.erb", "#{app}.target", binding
end