don't make log dirs, plz
This commit is contained in:
parent
4ba367e7ad
commit
7f3f81422e
@ -2,18 +2,9 @@ require "erb"
|
|||||||
require "foreman/export"
|
require "foreman/export"
|
||||||
|
|
||||||
class Foreman::Export::Initscript < Foreman::Export::Base
|
class Foreman::Export::Initscript < Foreman::Export::Base
|
||||||
|
|
||||||
def export
|
def export
|
||||||
|
|
||||||
#super
|
|
||||||
error("Must specify a location") unless location
|
error("Must specify a location") unless location
|
||||||
FileUtils.mkdir_p(location) rescue error("Could not create: #{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 = "initscript/master.erb"
|
||||||
name_without_first = name.split("/")[1..-1].join("/")
|
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) })
|
path = File.read(matchers.detect { |m| File.exists?(m) })
|
||||||
compiled = ERB.new(path).result(binding)
|
compiled = ERB.new(path).result(binding)
|
||||||
write_file "#{app}", compiled
|
write_file "#{app}", compiled
|
||||||
# path = export_template name
|
|
||||||
# write_template "initscript/master.erb", "#{app}", binding
|
|
||||||
end
|
end
|
||||||
|
|
||||||
end
|
end
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user