Linux premium180.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
LiteSpeed
: 162.0.209.168 | : 216.73.216.187
Cant Read [ /etc/named.conf ]
8.3.30
nortrmdp
www.github.com/MadExploits
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
UNLOCK SHELL
HASH IDENTIFIER
CPANEL RESET
CREATE WP USER
BLACK DEFEND!
README
+ Create Folder
+ Create File
/
lib /
python3.6 /
site-packages /
tuned /
plugins /
[ HOME SHELL ]
Name
Size
Permission
Action
__pycache__
[ DIR ]
drwxr-xr-x
instance
[ DIR ]
drwxr-xr-x
__init__.py
49
B
-rw-r--r--
base.py
21.89
KB
-rw-r--r--
decorators.py
983
B
-rw-r--r--
exceptions.py
99
B
-rw-r--r--
hotplug.py
3.84
KB
-rw-r--r--
plugin_acpi.py
2.39
KB
-rw-r--r--
plugin_audio.py
3.13
KB
-rw-r--r--
plugin_bootloader.py
25.31
KB
-rw-r--r--
plugin_cpu.py
27.56
KB
-rw-r--r--
plugin_disk.py
16.65
KB
-rw-r--r--
plugin_eeepc_she.py
2.88
KB
-rw-r--r--
plugin_irqbalance.py
3.47
KB
-rw-r--r--
plugin_modules.py
4.81
KB
-rw-r--r--
plugin_mounts.py
5.45
KB
-rw-r--r--
plugin_net.py
22.71
KB
-rw-r--r--
plugin_rtentsk.py
1.08
KB
-rw-r--r--
plugin_scheduler.py
54.94
KB
-rw-r--r--
plugin_script.py
3.76
KB
-rw-r--r--
plugin_scsi_host.py
3.08
KB
-rw-r--r--
plugin_selinux.py
2.27
KB
-rw-r--r--
plugin_service.py
10.47
KB
-rw-r--r--
plugin_sysctl.py
6.74
KB
-rw-r--r--
plugin_sysfs.py
2.63
KB
-rw-r--r--
plugin_systemd.py
5.3
KB
-rw-r--r--
plugin_uncore.py
4.61
KB
-rw-r--r--
plugin_usb.py
1.97
KB
-rw-r--r--
plugin_video.py
3.72
KB
-rw-r--r--
plugin_vm.py
3.48
KB
-rw-r--r--
repository.py
1.49
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : repository.py
from tuned.utils.plugin_loader import PluginLoader import tuned.plugins.base import tuned.logs log = tuned.logs.get() __all__ = ["Repository"] class Repository(PluginLoader): def __init__(self, monitor_repository, storage_factory, hardware_inventory, device_matcher, device_matcher_udev, plugin_instance_factory, global_cfg, variables): super(Repository, self).__init__() self._plugins = set() self._monitor_repository = monitor_repository self._storage_factory = storage_factory self._hardware_inventory = hardware_inventory self._device_matcher = device_matcher self._device_matcher_udev = device_matcher_udev self._plugin_instance_factory = plugin_instance_factory self._global_cfg = global_cfg self._variables = variables @property def plugins(self): return self._plugins def _set_loader_parameters(self): self._namespace = "tuned.plugins" self._prefix = "plugin_" self._interface = tuned.plugins.base.Plugin def create(self, plugin_name): log.debug("creating plugin %s" % plugin_name) plugin_cls = self.load_plugin(plugin_name) plugin_instance = plugin_cls(self._monitor_repository, self._storage_factory, self._hardware_inventory, self._device_matcher,\ self._device_matcher_udev, self._plugin_instance_factory, self._global_cfg, self._variables) self._plugins.add(plugin_instance) return plugin_instance def delete(self, plugin): assert isinstance(plugin, self._interface) log.debug("removing plugin %s" % plugin) plugin.cleanup() self._plugins.remove(plugin)
Close