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

Cleaning non used code

git-svn-id: http://svn.opennebula.org/one/trunk@410 3034c82b-c49b-4eb3-8279-a7acafdc01c0
This commit is contained in:
Javier Fontán Muiños 2009-03-13 21:32:35 +00:00
parent 28d3886f6a
commit f243bb5886

View File

@ -87,42 +87,7 @@ class Sensor
end
end
def execute_old(host, log_proc)
if send_script(host, log_proc)
cmd=SSHCommand.run(@script, host, log_proc)
if cmd.code==0
# Splits the output by lines, strips each line and gets only
# lines that have something
value=cmd.stdout.split("\n").collect {|v|
v2=v.strip
if v2==""
nil
else
v2
end
}.compact.join(",")
else
value="Could not execute remote script in " +
host + ": "+remote_script
log_proc.call(value)
nil
end
else
nil
end
end
private
def send_script(host, log_proc)
cmd=LocalCommand.run("scp #{script} #{host}:#{@remote_dir}")
if cmd.code==0
true
else
log_proc.call("Can not send script to remote machine: "+host)
false
end
end
# Generates an unique identifier using name of the sensor and its script
def gen_identifier