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