Example #1
0
 def installNginx(self, hostKey):
     broker = Broker.getBroker(hostKey)
     broker.installNginx()
Example #2
0
 def installMysql(self, hostKey):
     broker = Broker.getBroker(hostKey)
     broker.installMysql()
Example #3
0
 def iptables(self, hostKey, port):
     broker = Broker.getBroker(hostKey)
     broker.closePort(port)
Example #4
0
 def installMysql(self, hostKey):
     broker = Broker.getBroker(hostKey)
     broker.installMysql()
Example #5
0
 def portClose(self, hostKey, port):
     broker = Broker.getBroker(hostKey)
     broker.closePort(port)
Example #6
0
 def portOpen(self, hostKey, port):
     broker = Broker.getBroker(hostKey)
     broker.openPort(port)
Example #7
0
 def ipClose(self, hostKey, ip):
     broker = Broker.getBroker(hostKey)
     broker.Limit(ip)
Example #8
0
 def ipOpen(self, hostKey, ip):
     broker = Broker.getBroker(hostKey)
     broker.unLimit(ip)
Example #9
0
 def antivirus(self, hostKey, path):
     broker = Broker.getBroker(hostKey)
     return broker.antivirus(path)