[ SYSTEM ]: Linux srv.persadacompanies.com 4.18.0-553.56.1.el8_10.x86_64 #1 SMP Tue Jun 10 05:00:59 EDT 2025 x86_64
[ SERVER ]: Apache | PHP: 8.4.19
[ USER ]: persadamedika | IP: 45.64.1.108
GEFORCE FILE MANAGER
/
usr
/
lib
/
python3.6
/
site-packages
/
tuned
/
profiles
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 __pycache__
SET
[ DEL ]
📁 functions
SET
[ DEL ]
📄 __init__.py
281 B
SET
[ EDIT ]
|
[ DEL ]
📄 exceptions.py
95 B
SET
[ EDIT ]
|
[ DEL ]
📄 factory.py
141 B
SET
[ EDIT ]
|
[ DEL ]
📄 loader.py
4,270 B
SET
[ EDIT ]
|
[ DEL ]
📄 locator.py
3,784 B
SET
[ EDIT ]
|
[ DEL ]
📄 merger.py
2,184 B
SET
[ EDIT ]
|
[ DEL ]
📄 profile.py
1,134 B
SET
[ EDIT ]
|
[ DEL ]
📄 unit.py
2,489 B
SET
[ EDIT ]
|
[ DEL ]
📄 variables.py
2,340 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: unit.py
import collections import re class Unit(object): """ Unit description. """ __slots__ = [ "_name", "_type", "_enabled", "_replace", "_drop", "_devices", "_devices_udev_regex", \ "_cpuinfo_regex", "_uname_regex", "_script_pre", "_script_post", "_options" ] def __init__(self, name, config): self._name = name self._type = config.pop("type", self._name) self._enabled = config.pop("enabled", True) in [True, "True", "true", 1, "1"] self._replace = config.pop("replace", False) in [True, "True", "true", 1, "1"] self._drop = config.pop("drop", None) if self._drop is not None: self._drop = re.split(r"\b\s*[,;]\s*", str(self._drop)) self._devices = config.pop("devices", "*") self._devices_udev_regex = config.pop("devices_udev_regex", None) self._cpuinfo_regex = config.pop("cpuinfo_regex", None) self._uname_regex = config.pop("uname_regex", None) self._script_pre = config.pop("script_pre", None) self._script_post = config.pop("script_post", None) self._options = collections.OrderedDict(config) @property def name(self): return self._name @property def type(self): return self._type @type.setter def type(self, value): self._type = value @property def enabled(self): return self._enabled @enabled.setter def enabled(self, value): self._enabled = value @property def replace(self): return self._replace @property def drop(self): return self._drop @drop.setter def drop(self, value): self._drop = value @property def devices(self): return self._devices @devices.setter def devices(self, value): self._devices = value @property def devices_udev_regex(self): return self._devices_udev_regex @devices_udev_regex.setter def devices_udev_regex(self, value): self._devices_udev_regex = value @property def cpuinfo_regex(self): return self._cpuinfo_regex @cpuinfo_regex.setter def cpuinfo_regex(self, value): self._cpuinfo_regex = value @property def uname_regex(self): return self._uname_regex @uname_regex.setter def uname_regex(self, value): self._uname_regex = value @property def script_pre(self): return self._script_pre @script_pre.setter def script_pre(self, value): self._script_pre = value @property def script_post(self): return self._script_post @script_post.setter def script_post(self, value): self._script_post = value @property def options(self): return self._options @options.setter def options(self, value): self._options = value