1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

remote_path --> cmd_path

This commit is contained in:
Tino Vázquez 2010-10-07 18:29:24 +02:00
parent 813c1f4f48
commit e30a2dcc27

View File

@ -49,7 +49,7 @@ class InformationManager < OpenNebulaDriver
@config = read_configuration
@hypervisor = hypervisor
@cmd_path = "#{ENV['ONE_LOCATION']}/lib/remotes/im/#{hypervisor}.d"
@cmd_path = "#{ENV['ONE_LOCATION']}/lib/remotes/im"
# register actions
register_action(:MONITOR, method("action_monitor"))
@ -63,7 +63,7 @@ class InformationManager < OpenNebulaDriver
log(number, message)
end
cmd_string = "#{@remote_dir}/im/run_probes #{@hypervisor} #{host}"
cmd_string = "#{@cmd_path}/run_probes #{@hypervisor} #{host}"
monitor_exe = LocalCommand.run(cmd_string, host, log_method(id))
if monitor_exe.code == 0