summaryrefslogtreecommitdiff
path: root/worker/tests/rsync.rb
blob: 2c781d8c6e2058f04fbb93b78f7a201a38ed9469 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
require 'timeout'


#
# Run an rsync test.
#
#
# Return value
#   TRUE:  The host is up
#
#  FALSE:  The host is not up
#
def rsync_test ( params )

  #
  #  Get the hostname
  #
  host = params['target_host']
  port = 873

  puts "rsync testing host #{host}:#{port}"


  begin
    timeout(3) do

      begin
        socket = TCPSocket.new( host, port )
        socket.puts( "QUIT")
        banner = socket.gets(nil)
        socket.close()

        banner = banner[0,20]
        if ( banner =~ /rsyncd/i )
          puts "rsync alive: #{banner}"
          return true
        end
      rescue
        puts "Exception on host #{host}:#{port} - #{$!}"
        return false
      end
    end
  rescue Timeout::Error => e
    puts "TIMEOUT: #{e}"
    return false
  end
  return false
end