# 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.from .cloudException import CloudRuntimeException, formatExceptionInfoimport loggingfrom subprocess import PIPE, Popenfrom signal import alarm, signal, SIGALRM, SIGKILLimport sysimport osclass bash:def __init__(self, args, timeout=600):self.args = argslogging.debug("execute:%s"%args)self.timeout = timeoutself.process = Noneself.success = Falseself.run()def run(self):class Alarm(Exception):passdef alarm_handler(signum, frame):raise Alarmtry:self.process = Popen(self.args, shell=True, stdout=PIPE, stderr=PIPE)if self.timeout != -1:signal(SIGALRM, alarm_handler)alarm(self.timeout)try:self.stdout, self.stderr = self.process.communicate()if self.timeout != -1:alarm(0)except Alarm:os.kill(self.process.pid, SIGKILL)raise CloudRuntimeException("Timeout during command execution")self.success = self.process.returncode == 0except:raise CloudRuntimeException(formatExceptionInfo())if not self.success:logging.debug("Failed to execute:" + self.getErrMsg())def isSuccess(self):return self.successdef getStdout(self):return self.stdout.decode('utf-8').strip('\n')def getLines(self):return self.stdout.decode('utf-8').strip('\n').split('\n')def getStderr(self):return self.stderr.decode('utf-8').strip('\n')def getErrMsg(self):if self.isSuccess():return ""if self.getStderr() is None or self.getStderr() == "":return self.getStdout()else:return self.getStderr()def initLoging(logFile=None):try:if logFile is None:logging.basicConfig(level=logging.DEBUG)else:logging.basicConfig(filename=logFile, level=logging.DEBUG)except:logging.basicConfig(level=logging.DEBUG)def writeProgressBar(msg, result):output = "[%-6s]\n"%"Failed"if msg is not None:output = "%-30s"%msgelif result is True:output = "[%-2s]\n"%"OK"elif result is False:output = "[%-6s]\n"%"Failed"sys.stdout.write(output)sys.stdout.flush()class UnknownSystemException(Exception):"This Exception is raised if the current operating environment is unknown"passclass Distribution:def __init__(self):self.distro = "Unknown"self.release = "Unknown"if os.path.exists("/etc/fedora-release"):self.distro = "Fedora"elif os.path.exists("/etc/redhat-release"):version = open("/etc/redhat-release").readline()if (version.find("Red Hat Enterprise Linux Server release 6") != -1 or version.find("Scientific Linux release 6") != -1 orversion.find("CentOS Linux release 6") != -1 or version.find("CentOS release 6.") != -1):self.distro = "RHEL6"elif (version.find("Red Hat Enterprise Linux Server release 7") != -1 or version.find("Scientific Linux release 7") != -1 orversion.find("CentOS Linux release 7") != -1 or version.find("CentOS release 7.") != -1):self.distro = "RHEL7"elif (version.find("Red Hat Enterprise Linux Server release 8") != -1 or version.find("Scientific Linux release 8") != -1 orversion.find("CentOS Linux release 8") != -1 or version.find("CentOS release 8.") != -1 orversion.find("Linux release 8") != -1):self.distro = "RHEL8"elif (version.find("Red Hat Enterprise Linux Server release 9") != -1 or version.find("Scientific Linux release 9") != -1 orversion.find("Red Hat Enterprise Linux release 9") != -1 or version.find("Linux release 9.") != -1 orversion.find("Linux release 9") != -1):self.distro = "RHEL9"elif (version.find("Red Hat Enterprise Linux Server release 10") != -1 or version.find("Scientific Linux release 10") != -1 orversion.find("Red Hat Enterprise Linux release 10") != -1 or version.find("Linux release 10.") != -1 orversion.find("Linux release 10") != -1):self.distro = "RHEL10"elif version.find("CentOS") != -1:self.distro = "CentOS"else:self.distro = "RHEL5"elif os.path.exists("/etc/legal") and "Ubuntu" in open("/etc/legal").read(-1):self.distro = "Ubuntu"kernel = bash("uname -r").getStdout()if kernel.find("2.6.32") != -1:self.release = "10.04"self.arch = bash("uname -m").getStdout()elif os.path.exists("/usr/bin/lsb_release"):o = bash("/usr/bin/lsb_release -i")distributor = o.getStdout().split(":\t")[1]if "Debian" in distributor:# This obviously needs a rewrite at some pointself.distro = "Ubuntu"else:raise UnknownSystemException(distributor)elif os.path.exists("/etc/os-release"):version = open("/etc/os-release").readline()distributor = version.split("=")[1].replace('"', '').strip()if "SUSE" in distributor or "SLES" in distributor:self.distro = "SUSE"else:raise UnknownSystemException(distributor)else:raise UnknownSystemExceptiondef getVersion(self):return self.distrodef getRelease(self):return self.releasedef getArch(self):return self.archclass serviceOps:passclass serviceOpsRedhat(serviceOps):def isServiceRunning(self, servicename):try:o = bash("service " + servicename + " status")if "running" in o.getStdout() or "start" in o.getStdout() or "Running" in o.getStdout():return Trueelse:return Falseexcept:return Falsedef stopService(self, servicename,force=False):if self.isServiceRunning(servicename) or force:return bash("service " + servicename +" stop").isSuccess()return Truedef disableService(self, servicename):result = self.stopService(servicename)bash("chkconfig --del " + servicename)return resultdef startService(self, servicename,force=False):if not self.isServiceRunning(servicename) or force:return bash("service " + servicename + " start").isSuccess()return Truedef enableService(self, servicename,forcestart=False):bash("chkconfig --level 2345 " + servicename + " on")return self.startService(servicename,force=forcestart)def isKVMEnabled(self):if os.path.exists("/dev/kvm"):return Trueelse:return Falseclass serviceOpsUbuntu(serviceOps):def isServiceRunning(self, servicename):try:o = bash("sudo /usr/sbin/service " + servicename + " status")if "not running" in o.getStdout():return Falseelse:return Trueexcept:return Falsedef stopService(self, servicename,force=True):if self.isServiceRunning(servicename) or force:return bash("sudo /usr/sbin/service " + servicename +" stop").isSuccess()def disableService(self, servicename):result = self.stopService(servicename)bash("sudo update-rc.d -f " + servicename + " remove")return resultdef startService(self, servicename,force=True):if not self.isServiceRunning(servicename) or force:return bash("sudo /usr/sbin/service " + servicename + " start").isSuccess()def enableService(self, servicename,forcestart=True):bash("sudo update-rc.d -f " + servicename + " remove")bash("sudo update-rc.d -f " + servicename + " defaults")return self.startService(servicename,force=forcestart)def isKVMEnabled(self):return bash("kvm-ok").isSuccess()class serviceOpsRedhat7Later(serviceOps):def isServiceRunning(self, servicename):try:o = bash("systemctl is-active " + servicename)textout = o.getStdout()return "inactive" not in textout and "failed" not in textoutexcept:return Falsedef stopService(self, servicename,force=False):if self.isServiceRunning(servicename) or force:return bash("systemctl stop " + servicename).isSuccess()return Truedef disableService(self, servicename):result = self.stopService(servicename)bash("systemctl disable " + servicename)return resultdef startService(self, servicename,force=False):if not self.isServiceRunning(servicename) or force:return bash("systemctl start " + servicename).isSuccess()return Truedef enableService(self, servicename,forcestart=False):bash("systemctl enable " + servicename)return self.startService(servicename,force=forcestart)def isKVMEnabled(self):if os.path.exists("/dev/kvm"):return Trueelse:return Falseclass serviceOpsSUSE(serviceOpsRedhat7Later):pass
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。
1. Open source ecosystem
2. Collaboration, People, Software
3. Evaluation model