1 from starcluster.logger import log
2 from starcluster.clustersetup import ClusterSetup
3
4
6 - def __init__(self, my_arg, my_other_arg):
7 log.debug("setupclass: my_arg = %s, my_other_arg = %s" % (my_arg,
8 my_other_arg))
9
10 - def run(self, nodes, master, user, shell, volumes):
15
16
18 - def __init__(self, my_arg, my_other_arg):
19 log.debug("setupclass2: my_arg = %s, my_other_arg = %s" %
20 (my_arg, my_other_arg))
21
22 - def run(self, nodes, master, user, shell, volumes):
27
28
30 - def __init__(self, my_arg, my_other_arg, my_other_other_arg):
31 msg = "setupclass3: my_arg = %s, my_other_arg = %s"
32 msg += " my_other_other_arg = %s"
33 log.debug(msg % (my_arg, my_other_arg, my_other_other_arg))
34
35 - def run(self, nodes, master, user, shell, volumes):
40