1 from starcluster.logger import log
2 from starcluster.clustersetup import ClusterSetup
3
5 - def __init__(self, my_arg, my_other_arg):
6 log.debug("setupclass: my_arg = %s, my_other_arg = %s" % (my_arg,
7 my_other_arg))
8
9 - def run(self, nodes, master, user, shell, volumes):
14
16 - def __init__(self, my_arg, my_other_arg):
17 log.debug("setupclass2: my_arg = %s, my_other_arg = %s" % (my_arg,
18 my_other_arg))
19
20 - def run(self, nodes, master, user, shell, volumes):
25
27 - def __init__(self, my_arg, my_other_arg, my_other_other_arg):
28 msg = "setupclass3: my_arg = %s, my_other_arg = %s"
29 msg += " my_other_other_arg = %s"
30 log.debug(msg % (my_arg, my_other_arg, my_other_other_arg))
31
32 - def run(self, nodes, master, user, shell, volumes):
37