Fix bug.
This commit is contained in:
parent
1bc20e2067
commit
6841c3054d
|
@ -65,7 +65,7 @@ namespace :create_site do
|
||||||
end
|
end
|
||||||
server_name = server_name_list.join(' ')
|
server_name = server_name_list.join(' ')
|
||||||
nginx_file_content = exec_ssh_command_by_sudo_and_see_output(ssh,"cat #{nginx_file}",false,true)
|
nginx_file_content = exec_ssh_command_by_sudo_and_see_output(ssh,"cat #{nginx_file}",false,true)
|
||||||
site_path = Pathname.new(exec_ssh_command_by_sudo(ssh,"echo `grep root #{nginx_file} | grep -v -e '#.*root'`").to_s.split("\n").first.to_s.strip.split("root").last.to_s.gsub(";","").strip).dirname.to_s
|
site_path = Pathname.new(exec_ssh_command_by_sudo_and_see_output(ssh,"echo `grep root #{nginx_file} | grep -v -e '#.*root'`",fals e,true).to_s.split("\n").first.to_s.strip.split(";").first.split("root").last.to_s.strip).dirname.to_s
|
||||||
if site_path.present? && exec_ssh_command_by_sudo(ssh,"ls #{site_path}").split.length != 0 && exec_ssh_command_by_sudo(ssh,"ls #{site_path}/Gemfile").include?("No such file or directory")
|
if site_path.present? && exec_ssh_command_by_sudo(ssh,"ls #{site_path}").split.length != 0 && exec_ssh_command_by_sudo(ssh,"ls #{site_path}/Gemfile").include?("No such file or directory")
|
||||||
SiteConstruct.where(:server_type => @site_server.server_name , :domain_name=>server_name).destroy
|
SiteConstruct.where(:server_type => @site_server.server_name , :domain_name=>server_name).destroy
|
||||||
next
|
next
|
||||||
|
|
Loading…
Reference in New Issue