107 lines
3.5 KiB
Python
107 lines
3.5 KiB
Python
# -*- coding:utf-8 -*-
|
|
#############################################################################
|
|
# Copyright (c) 2020 Huawei Technologies Co.,Ltd.
|
|
#
|
|
# openGauss is licensed under Mulan PSL v2.
|
|
# You can use this software according to the terms
|
|
# and conditions of the Mulan PSL v2.
|
|
# You may obtain a copy of Mulan PSL v2 at:
|
|
#
|
|
# http://license.coscl.org.cn/MulanPSL2
|
|
#
|
|
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OF ANY KIND,
|
|
# EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
|
|
# MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
|
|
# See the Mulan PSL v2 for more details.
|
|
# ----------------------------------------------------------------------------
|
|
# Description : gsservice.py is a utility to do something for service
|
|
# information.
|
|
#############################################################################
|
|
import subprocess
|
|
import sys
|
|
|
|
sys.path.append(sys.path[0] + "/../../")
|
|
from gspylib.common.ErrorCode import ErrorCode
|
|
from gspylib.os.gsplatform import g_Platform
|
|
|
|
# ---------------OS service action --------------------
|
|
ACTION_LIST = ["start", "stop", "restart", "status", "reload", "enable"]
|
|
FIREWALL = "firewall"
|
|
CROND = "crond"
|
|
SSHD = "sshd"
|
|
SYSLOG = "syslog"
|
|
RSYSLOG = "rsyslog"
|
|
SYSTEMD_JOURNALD = "systemd-journald"
|
|
NTPD = "ntp"
|
|
GS_OS_SERVER = "gs-OS-set"
|
|
SERVICE_LIST = [FIREWALL, CROND, SSHD, SYSLOG, RSYSLOG, SYSTEMD_JOURNALD, NTPD,
|
|
GS_OS_SERVER]
|
|
|
|
|
|
class Service():
|
|
"""
|
|
function: Init the Service options
|
|
"""
|
|
|
|
def __init__(self):
|
|
"""
|
|
constructor
|
|
"""
|
|
pass
|
|
|
|
def checkService(self, service):
|
|
"""
|
|
function: check service
|
|
"""
|
|
if (service not in SERVICE_LIST):
|
|
raise Exception(ErrorCode.GAUSS_500["GAUSS_50011"] % ("service",
|
|
service))
|
|
|
|
def checkAction(self, action):
|
|
"""
|
|
function: check action
|
|
"""
|
|
if (action not in ACTION_LIST):
|
|
raise Exception(ErrorCode.GAUSS_500["GAUSS_50011"] % ("action",
|
|
action))
|
|
|
|
def manageOSService(self, service, action):
|
|
"""
|
|
function: manage OS service
|
|
"""
|
|
self.checkService(service)
|
|
self.checkAction(action)
|
|
|
|
# get service commands
|
|
if (service == FIREWALL):
|
|
cmd = g_Platform.getManageFirewallCmd(action)
|
|
elif (service == CROND):
|
|
cmd = g_Platform.getManageCrondCmd(action)
|
|
elif (service == SSHD):
|
|
cmd = g_Platform.getManageSshdCmd(action)
|
|
elif (service == SYSTEMD_JOURNALD):
|
|
# systemd-journald now only supported on SuSE Platform
|
|
cmd = g_Platform.getManageSystemdJournaldCmd(action)
|
|
elif (service == SYSLOG):
|
|
# syslog-ng only supported on SuSE Platform
|
|
cmd = g_Platform.getManageSyslogCmd(action)
|
|
elif (service == RSYSLOG):
|
|
# rsyslog only supported on SuSE Platform
|
|
cmd = g_Platform.getManageRsyslogCmd(action)
|
|
elif (service == GS_OS_SERVER):
|
|
cmd = g_Platform.getManageGsOsServerCmd(action)
|
|
else:
|
|
return (1, "Server(%s) is not support." % service)
|
|
(status, output) = subprocess.getstatusoutput(cmd)
|
|
return (status, output)
|
|
|
|
def getFirewallStatus(self):
|
|
"""
|
|
function: get firewall status
|
|
"""
|
|
return g_Platform.getLinuxFirewallStatus()
|
|
|
|
|
|
g_service = Service()
|