Skip to content
Snippets Groups Projects
test-template.rb 335 B
Newer Older
Adam Lewenberg's avatar
Adam Lewenberg committed
#!/usr/bin/ruby
# test the erb template with variables below

require 'erb'

template = File.readlines("apache.erb").to_s
message = ERB.new(template, 0, "%<>")

os = "debian"
name = ''
#logs = [ "/var/log/httpd/custom.log", "/var/log/httpd/my.log" ]
logs = []
client = ''
group = ''
subname = ''

results = message.result
puts results