Class: Ykxutils::Nginxconfigfiles

Inherits:
Object
  • Object
show all
Defined in:
lib/ykxutils/nginxconfigfiles.rb

Instance Method Summary collapse

Instance Method Details

#get_file_list(start_dir, rex) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
# File 'lib/ykxutils/nginxconfigfiles.rb', line 6

def get_file_list(start_dir, rex)
  @file_list = []

  Find.find(start_dir) do |x|
    if x =~ rex
      @file_list << x
      Find.prune
    end
  end
  @file_list
end

#output(file_list) ⇒ Object



18
19
20
21
22
23
24
25
26
27
28
29
30
# File 'lib/ykxutils/nginxconfigfiles.rb', line 18

def output(file_list)
  file_list.map do |fname|
    parent_dir_pn = Pathname.new(fname).cleanpath.parent
    vdomain = parent_dir_pn.basename
    output_fname = "#{vdomain}.conf"
    cli = ::Ykxutils::Nginxconfig.new(fname)
    scope = nil
    File.open(output_fname, "w") do |f|
      x = cli.extract(scope)
      f.write(x)
    end
  end
end