Exemplo n.º 1
0
Arquivo: cli.py Projeto: f0rk/locald
    def server_stop(self, config, args):
        if is_server_running(config):

            client = Client(config)

            names = self.get_services(config, "ALL")
            for name in names:
                client.stop(name)

            stop_server(config)
Exemplo n.º 2
0
Arquivo: cli.py Projeto: f0rk/locald
 def restart(self, config, args):
     client = Client(config)
     client.restart(args.name)
Exemplo n.º 3
0
Arquivo: cli.py Projeto: f0rk/locald
 def stop(self, config, args):
     client = Client(config)
     client.stop(args.name)
Exemplo n.º 4
0
Arquivo: cli.py Projeto: f0rk/locald
 def status(self, config, args):
     client = Client(config)
     client.status(args.names)