Exemple #1
0
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "node", argList)
     self.executePath = self.stackDir + "/buildtools/utils"
     self.executeScript = "sudo ./node.sh"
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "logging", argList)
     self.executePath = self.stackDir + "/logging"
     self.executeScript = "./i-enable-logging.sh"
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "redis", argList)
     self.executePath = self.stackDir + "/web/python-nginx-pgpool-redis"
     self.executeScript = "sudo ./redis-client-install.sh "
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "pgpool", argList)
     self.executePath = self.stackDir + "/web/python-nginx-pgpool"
     self.executeScript = "sudo ./pgpool.sh " + self.postgresVersion
Exemple #5
0
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "node", argList)
     self.executePath = self.stackDir + "/buildtools/utils"
     self.executeScript = "sudo ./node.sh"
Exemple #6
0
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "supervisor", argList)
     self.executePath = self.stackDir + "/buildtools/utils"
     self.executeScript = "sudo ./install-supervisor.sh custom"
Exemple #7
0
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "nginx_php", argList)
     self.executePath = self.stackDir + "/web/php-nginx"
     self.executeScript = "sudo ./nginx.sh "
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "nginx_php", argList)
     self.executePath = self.stackDir + "/web/php-nginx"
     self.executeScript = "sudo ./nginx.sh "
Exemple #9
0
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "web", argList)
     self.executePath = (self.stackDir + "/"
                         + self.stack + "-stack/web")
     self.executeScript = "sudo ./web.sh " + self.region
Exemple #10
0
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "pgpool", argList)
     self.executePath = self.stackDir + "/web/python-nginx-pgpool"
     self.executeScript = "sudo ./pgpool.sh " + self.postgresVersion
Exemple #11
0
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "python", argList)
     self.executePath = self.stackDir + "/python"
     self.executeScript = "sudo ./python.sh"
Exemple #12
0
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "logging", argList)
     self.executePath = self.stackDir + "/logging"
     self.executeScript = "./i-enable-logging.sh"
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "python", argList)
     self.executePath = self.stackDir + "/python"
     self.executeScript = "sudo ./python.sh"
Exemple #14
0
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "redis", argList)
     self.executePath = self.stackDir + "/web/python-nginx-pgpool-redis"
     self.executeScript = "sudo ./redis-client-install.sh "