33 lines
1 KiB
Python
33 lines
1 KiB
Python
# -*- coding: utf-8 -*-
|
|
|
|
import os
|
|
import glob
|
|
import kobo.shortcuts
|
|
from kobo.cli import Command
|
|
|
|
class Off(Command):
|
|
"""switch off all tunning"""
|
|
enabled = True
|
|
|
|
def options(self):
|
|
self.parser.usage = "%%prog %s" % self.normalized_name
|
|
|
|
self.parser.add_option(
|
|
"--show-disabled",
|
|
default=False,
|
|
action="store_true",
|
|
help="show disabled workers"
|
|
)
|
|
|
|
|
|
def run(self, *args, **kwargs):
|
|
os.system("rm -rf /etc/ktune.d/*.conf")
|
|
os.system("rm -rf /etc/ktune.d/*.sh")
|
|
if os.path.exists("/etc/sysconfig/ktune.bckp"):
|
|
os.rename("/etc/sysconfig/ktune.bckp", "/etc/sysconfig/ktune")
|
|
if os.path.exists("/etc/tuned.conf.bckp") and os.path.exists("/etc/tuned.conf"):
|
|
os.rename("/etc/tuned.conf.bckp", "/etc/tuned.conf")
|
|
os.system('service ktune stop')
|
|
os.system('service tuned stop')
|
|
os.system('chkconfig --del ktune')
|
|
os.system('chkconfig --del tuned')
|