10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
# File 'lib/arkrb/install.rb', line 10
def server_tools
server_tools_install_sh_path = "/tmp/server_tools_install_#{Time.now.strftime('%Y%m%d-%H%M%S')}.sh"
File.delete(server_tools_install_sh_path) if File.exist?(server_tools_install_sh_path)
`#{CURL_EXEC} -sL http://git.io/vtf5N > #{server_tools_install_sh_path}`
file_md5 = Digest::MD5.hexdigest File.read(server_tools_install_sh_path)
raise Arkrb::Error::InstallScriptMD5Changed, "Uhh oh!!! #{file_md5} did not match #{Arkrb::ARK_SERVER_TOOLS_MD5}; Please report this issue at https://github.com/mbround18/Arkrb" unless file_md5.eql? Arkrb::ARK_SERVER_TOOLS_MD5
`#{BASH_EXEC} #{server_tools_install_sh_path} --me --perform-user-install`
old_mkmf_log = MakeMakefile::Logging.instance_variable_get(:@logfile)
MakeMakefile::Logging.instance_variable_set(:@logfile, '/dev/null')
ark_manager_exec = find_executable0('arkmanager', "#{Arkrb::USER_HOME}/bin")
MakeMakefile::Logging.instance_variable_set(:@logfile, old_mkmf_log)
unless ark_manager_exec
File.open("#{Arkrb::USER_HOME}/.bashrc", 'a') do |file|
file.write "export PATH=$PATH:#{File.expand_path(Arkrb::USER_HOME + '/bin')}"
end
puts 'arkmanager was successfully added to your path' if find_executable('arkmanager', "#{Arkrb::USER_HOME}/bin")
end
end
|