mbligh | ba98eb1 | 2008-04-21 18:08:46 +0000 | [diff] [blame^] | 1 | import time |
2 | |||||
3 | print "Instantiating a machine object" | ||||
4 | m = hosts.SSHHost(machines[0]) | ||||
5 | print "Passed" | ||||
6 | |||||
7 | |||||
8 | |||||
9 | print "Running is_up on remote machine" | ||||
10 | m.is_up() | ||||
11 | time.sleep(1) | ||||
12 | m.is_up() | ||||
13 | print "Passed" | ||||
14 |