don't make log dirs, plz

This commit is contained in:
John Bintz 2013-01-01 16:24:02 -05:00
parent 4ba367e7ad
commit 7f3f81422e

View File

@ -2,18 +2,9 @@ require "erb"
require "foreman/export"
class Foreman::Export::Initscript < Foreman::Export::Base
def export
#super
error("Must specify a location") unless location
FileUtils.mkdir_p(location) rescue error("Could not create: #{location}")
FileUtils.mkdir_p(log) rescue error("Could not create: #{log}")
# begin
# FileUtils.chown(user, nil, log)
# rescue Exception => e
# error("Could not chown #{log} to #{user} - #{e.message}")
# end
name = "initscript/master.erb"
name_without_first = name.split("/")[1..-1].join("/")
@ -24,9 +15,6 @@ class Foreman::Export::Initscript < Foreman::Export::Base
path = File.read(matchers.detect { |m| File.exists?(m) })
compiled = ERB.new(path).result(binding)
write_file "#{app}", compiled
# path = export_template name
# write_template "initscript/master.erb", "#{app}", binding
end
end