blob: 47c20c952a5b8a51e6f12f15866855ee97efbdfc [file] [log] [blame]
#!/usr/bin/env python
"""
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements. See the NOTICE file
distributed with this work for additional information
regarding copyright ownership. The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
"""
import sys
from resource_management import *
from yaml_config import yaml_config
from storm import storm
from service import service
class Supervisor(Script):
def install(self, env):
self.install_packages(env)
def configure(self, env):
import params
env.set_params(params)
storm()
def start(self, env):
import params
env.set_params(params)
self.configure(env)
service("supervisor", action="start")
service("logviewer", action="start")
def stop(self, env):
import params
env.set_params(params)
service("supervisor", action="stop")
service("logviewer", action="stop")
def status(self, env):
import status_params
env.set_params(status_params)
check_process_status(status_params.pid_supervisor)
if __name__ == "__main__":
Supervisor().execute()