1
2 from starcluster.logger import log
3 from starcluster.clustersetup import ClusterSetup
4
5
7 - def __init__(self, my_arg, my_other_arg):
8 log.debug("setupclass: my_arg = %s, my_other_arg = %s" % (my_arg,
9 my_other_arg))
10
11 - def run(self, nodes, master, user, shell, volumes):
16
17
19 - def __init__(self, my_arg, my_other_arg):
20 log.debug("setupclass2: my_arg = %s, my_other_arg = %s" % \
21 (my_arg, my_other_arg))
22
23 - def run(self, nodes, master, user, shell, volumes):
28
29
31 - def __init__(self, my_arg, my_other_arg, my_other_other_arg):
32 msg = "setupclass3: my_arg = %s, my_other_arg = %s"
33 msg += " my_other_other_arg = %s"
34 log.debug(msg % (my_arg, my_other_arg, my_other_other_arg))
35
36 - def run(self, nodes, master, user, shell, volumes):
41