This commit is contained in:
bee0005 2016-09-21 09:18:18 +00:00
parent 418fbf93d8
commit 179afe0bd7
1 changed files with 8 additions and 0 deletions

View File

@ -6,6 +6,14 @@ class ApplicationController < ActionController::Base
def get_conf
@config = Hash.new
one_node = Node.take
if !one_node.nil?
@config["host_name"] = one_node.host_name
@config["host_ip"] = one_node.host_ip
@config["user_name"] = one_node.user_name
@config["user_password"] = one_node.user_password
end
output = `cat configure.conf`.split("\n")
output.each do |t|
if t.include? "project_path="