Beispiel #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"
Beispiel #3
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 "
Beispiel #4
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
Beispiel #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"
Beispiel #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"
Beispiel #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 "
Beispiel #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
Beispiel #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
Beispiel #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"
Beispiel #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"
Beispiel #13
0
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "python", argList)
     self.executePath = self.stackDir + "/python"
     self.executeScript = "sudo ./python.sh"
Beispiel #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 "