Square one.
[osm/N2VC.git] / juju / machine.py
1 class Machine(object):
2 def run(self):
3 """Run command on this machine.
4
5 """
6 pass
7
8 def scp(self):
9 """Transfer files to this machine.
10
11 """
12 pass
13
14 def ssh(self):
15 """Execute a command over SSH on this machine.
16
17 """
18 pass
19
20 def status_history(self):
21 """Get status history for this machine.
22
23 """
24 pass