The different modes could be specified in /etc/tune-profiles and then can be listed by list: tuned-adm list and set by: tuned-adm modes YourFavourite
37 lines
1.2 KiB
Python
37 lines
1.2 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')
|
|
usb_devices = glob.glob('/sys/bus/usb/devices/?-?/')
|
|
# test whether usb suspend is on
|
|
for i in usb_devices:
|
|
retcode, output = kobo.shortcuts.run('echo on > %spower/level' % i)
|