Linux server.edchosting.com 4.18.0-553.79.1.lve.el7h.x86_64 #1 SMP Wed Oct 15 16:34:46 UTC 2025 x86_64
LiteSpeed
Server IP : 75.98.162.185 & Your IP : 216.73.216.163
Domains :
Cant Read [ /etc/named.conf ]
User : goons4good
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python2.7 /
site-packages /
tuned /
hardware /
Delete
Unzip
Name
Size
Permission
Date
Action
__init__.py
90
B
-rw-r--r--
2019-03-21 18:10
__init__.pyc
253
B
-rw-r--r--
2022-09-21 09:17
__init__.pyo
253
B
-rw-r--r--
2022-09-21 09:17
device_matcher.py
1.54
KB
-rw-r--r--
2019-03-21 18:10
device_matcher.pyc
2.11
KB
-rw-r--r--
2022-09-21 09:17
device_matcher.pyo
2.11
KB
-rw-r--r--
2022-09-21 09:17
device_matcher_udev.py
521
B
-rw-r--r--
2019-03-21 18:10
device_matcher_udev.pyc
1.06
KB
-rw-r--r--
2022-09-21 09:17
device_matcher_udev.pyo
1.06
KB
-rw-r--r--
2022-09-21 09:17
inventory.py
3.59
KB
-rw-r--r--
2019-03-21 18:10
inventory.pyc
4.76
KB
-rw-r--r--
2022-09-21 09:17
inventory.pyo
4.76
KB
-rw-r--r--
2022-09-21 09:17
Save
Rename
from . import device_matcher import re __all__ = ["DeviceMatcherUdev"] class DeviceMatcherUdev(device_matcher.DeviceMatcher): def match(self, regex, device): """ Match a device against the udev regex in tuning profiles. device is a pyudev.Device object """ properties = '' try: items = device.properties.items() except AttributeError: items = device.items() for key, val in list(items): properties += key + '=' + val + '\n' return re.search(regex, properties, re.MULTILINE) is not None