Class: Oxidized::FTP
Constant Summary
collapse
- RescueFail =
{
debug: [
],
warn: [
]
}.freeze
Instance Attribute Summary
Attributes included from Input::CLI
#node
Instance Method Summary
collapse
Methods included from Input::CLI
#connect_cli, #disconnect_cli, #get, #initialize, #login, #password, #post_login, #pre_logout, #username
#vars
Instance Method Details
#cmd(file) ⇒ Object
32
33
34
35
|
# File 'lib/oxidized/input/ftp.rb', line 32
def cmd(file)
Oxidized.logger.debug "FTP: #{file} @ #{@node.name}"
@ftp.getbinaryfile file, nil
end
|
#connect(node) ⇒ Object
18
19
20
21
22
23
24
25
26
|
# File 'lib/oxidized/input/ftp.rb', line 18
def connect(node)
@node = node
@node.model.cfg['ftp'].each { |cb| instance_exec(&cb) }
@log = File.open(Oxidized::Config::Log + "/#{@node.ip}-ftp", 'w') if Oxidized.config.input.debug?
@ftp = Net::FTP.new(@node.ip)
@ftp.passive = Oxidized.config.input.ftp.passive
@ftp.login @node.auth[:username], @node.auth[:password]
connected?
end
|
#connected? ⇒ Boolean
28
29
30
|
# File 'lib/oxidized/input/ftp.rb', line 28
def connected?
@ftp && (not @ftp.closed?)
end
|
#output ⇒ Object
42
43
44
|
# File 'lib/oxidized/input/ftp.rb', line 42
def output
""
end
|
#send(my_proc) ⇒ Object
meh not sure if this is the best way, but perhaps better than not implementing send
38
39
40
|
# File 'lib/oxidized/input/ftp.rb', line 38
def send(my_proc)
my_proc.call
end
|