コード例 #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"
コード例 #2
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"
コード例 #3
0
ファイル: dc_redis.py プロジェクト: devopscenter/docker-stack
 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 "
コード例 #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
コード例 #5
0
ファイル: dc_node.py プロジェクト: devopscenter/docker-stack
 def __init__(self, argList):
     """Constructor for this class."""
     ElementBase.__init__(self, "node", argList)
     self.executePath = self.stackDir + "/buildtools/utils"
     self.executeScript = "sudo ./node.sh"
コード例 #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"
コード例 #7
0
ファイル: dc_nginx_php.py プロジェクト: adampielak/dcStack
 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 "
コード例 #8
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 "
コード例 #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
コード例 #10
0
ファイル: dc_pgpool.py プロジェクト: adampielak/dcStack
 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
コード例 #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"
コード例 #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"
コード例 #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"
コード例 #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 "