summaryrefslogtreecommitdiff
path: root/lib/oxidized/input/tftp
diff options
context:
space:
mode:
authorMajesticFalcon <Schylarutley@hotmail.com>2016-08-30 18:02:00 -0500
committerGitHub <noreply@github.com>2016-08-30 18:02:00 -0500
commitcc1184abc98fd270ee8fee4925f38de08c908bb8 (patch)
tree7981e6ee03a7aed526cdbca67463324e0eac345f /lib/oxidized/input/tftp
parent35f20515be92d57245abd24b9b2969d5d70922ba (diff)
Update Filename and tftp load
Diffstat (limited to 'lib/oxidized/input/tftp')
-rw-r--r--lib/oxidized/input/tftp57
1 files changed, 0 insertions, 57 deletions
diff --git a/lib/oxidized/input/tftp b/lib/oxidized/input/tftp
deleted file mode 100644
index cac8f2d..0000000
--- a/lib/oxidized/input/tftp
+++ /dev/null
@@ -1,57 +0,0 @@
-module Oxidized
- require 'net/tftp'
- require 'timeout'
- require 'stringio'
- require_relative 'cli'
-
- class TFTP < Input
- RescueFail = {
- :debug => [
- #Net::SSH::Disconnect,
- ],
- :warn => [
- #RuntimeError,
- #Net::SSH::AuthenticationFailed,
- ],
- }
-
- include Input::CLI
-
- # TFTP utilizes UDP, there is not a connection. We simply specify an IP and send/receive data.
- def connect node
- @node = node
-
- @node.model.cfg['tftp'].each { |cb| instance_exec(&cb) }
- @log = File.open(Oxidized::Config::Log + "/#{@node.ip}-tftp", 'w') if Oxidized.config.input.debug?
- @tftp = Net::TFTP.new @node.ip
- end
-
- def cmd file
- Oxidized.logger.info file.methods(true)
- Oxidized.logger.debug "TFTP: #{file} @ #{@node.name}"
- config = StringIO.new
- @tftp.getbinary file, config
- config.rewind
- config.read
- end
-
-
- # meh not sure if this is the best way, but perhaps better than not implementing send
- def send my_proc
- my_proc.call
- end
-
- def output
- ""
- end
-
- private
-
- def disconnect
- # TFTP uses UDP, there is no connection to close
- ensure
- @log.close if Oxidized.config.input.debug?
- end
-
- end
-end