Linux business57.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
LiteSpeed
Server IP : 199.188.201.191 & Your IP : 3.148.217.66
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
python3.6 /
site-packages /
dnf-plugins /
Delete
Unzip
Name
Size
Permission
Date
Action
__pycache__
[ DIR ]
drwxr-xr-x
2025-04-05 06:20
builddep.py
9.13
KB
-rw-r--r--
2024-04-08 10:02
changelog.py
4.85
KB
-rw-r--r--
2021-04-12 15:30
config_manager.py
10.63
KB
-rw-r--r--
2021-04-12 15:30
copr.py
29.59
KB
-rw-r--r--
2024-04-08 10:02
debug.py
12.27
KB
-rw-r--r--
2021-04-12 15:30
debuginfo-install.py
10.82
KB
-rw-r--r--
2021-04-12 15:30
download.py
12.04
KB
-rw-r--r--
2021-04-12 15:30
etckeeper.py
1.26
KB
-rw-r--r--
2023-01-28 09:34
generate_completion_cache.py
3.86
KB
-rw-r--r--
2021-04-12 15:30
groups_manager.py
13.21
KB
-rw-r--r--
2024-04-08 10:02
needs_restarting.py
11.59
KB
-rw-r--r--
2024-04-08 10:02
repoclosure.py
6.65
KB
-rw-r--r--
2021-04-12 15:30
repodiff.py
11.21
KB
-rw-r--r--
2021-04-12 15:30
repograph.py
4
KB
-rw-r--r--
2021-04-12 15:30
repomanage.py
10.32
KB
-rw-r--r--
2024-04-08 10:02
reposync.py
14.3
KB
-rw-r--r--
2024-04-08 10:02
spacewalk.py
13.88
KB
-rw-r--r--
2025-02-26 09:26
system_upgrade.py
26.17
KB
-rw-r--r--
2024-04-08 10:02
universal_hooks.py
5.78
KB
-rwxr-xr-x
2020-10-11 23:57
versionlock.py
12.03
KB
-rw-r--r--
2024-04-08 10:02
Save
Rename
# etckeeper.py, support etckeeper for dnf # # Copyright (C) 2014 Peter Listiak # https://github.com/plistiak/dnf-etckeeper # # Later modifications by Petr Spacek: # Distutils code below was copied from etckeeper-bzr distributed with v1.15 # import logging import subprocess import dnf logger = logging.getLogger('dnf.plugin') class Etckeeper(dnf.Plugin): name = 'etckeeper' def _run_command(self, command): logger.debug('Etckeeper plugin: %s', command) try: with open("/dev/null", "wb") as devnull: ret = subprocess.call(("etckeeper", command), stdout=devnull, stderr=devnull, close_fds=True) if ret != 0: raise dnf.exceptions.Error('"etckeeper %s" returned: %d' % (command, ret)) except OSError as err: logger.warning('Failed to run "etckeeper %s": %s' % (command, err)) def resolved(self): self._run_command("pre-install") def transaction(self): self._run_command("post-install") if __name__ == "__main__": from distutils.core import setup setup(name="dnf-etckeeper", packages=["dnf-plugins"], package_dir={"dnf-plugins":"etckeeper-dnf"})