Linux premium71.web-hosting.com 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
LiteSpeed
Server IP : 198.187.29.8 & Your IP : 18.188.39.197
Domains :
Cant Read [ /etc/named.conf ]
User : cleahvkv
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
lib /
rpm /
macros.d /
Delete
Unzip
Name
Size
Permission
Date
Action
macros.alt-python310
2.01
KB
-rw-r--r--
2025-01-09 16:16
macros.alt-python311
2.01
KB
-rw-r--r--
2025-01-09 01:47
macros.alt-python312
2.01
KB
-rw-r--r--
2025-03-03 16:43
macros.alt-python313
2.01
KB
-rw-r--r--
2025-03-04 12:29
macros.alt-python38
1.97
KB
-rw-r--r--
2024-09-23 11:26
macros.alt-python39
1.98
KB
-rw-r--r--
2025-01-13 12:44
macros.dwz
1.76
KB
-rw-r--r--
2023-05-15 14:30
macros.efi-srpm
3
KB
-rw-r--r--
2021-11-23 22:32
macros.environment-modules
75
B
-rw-r--r--
2020-07-30 12:13
macros.fedora-misc
2.76
KB
-rw-r--r--
2023-05-15 14:30
macros.fedora-misc-srpm
239
B
-rw-r--r--
2023-05-15 14:30
macros.firewalld
239
B
-rw-r--r--
2025-03-11 09:51
macros.forge
12.43
KB
-rw-r--r--
2023-05-15 14:30
macros.ghc-srpm
414
B
-rw-r--r--
2018-08-12 10:37
macros.go-srpm
7.17
KB
-rw-r--r--
2021-04-08 14:45
macros.info
390
B
-rw-r--r--
2022-04-18 17:09
macros.kernel-srpm
116
B
-rw-r--r--
2023-05-15 14:30
macros.ldc-srpm
73
B
-rw-r--r--
2023-05-15 14:30
macros.ldconfig
307
B
-rw-r--r--
2023-05-15 14:30
macros.mono-srpm
181
B
-rw-r--r--
2023-05-15 14:30
macros.nodejs-srpm
324
B
-rw-r--r--
2023-05-15 14:30
macros.ocaml-srpm
737
B
-rw-r--r--
2019-10-14 08:31
macros.openblas-srpm
104
B
-rw-r--r--
2019-10-16 20:47
macros.perl
5.06
KB
-rw-r--r--
2023-05-18 21:20
macros.perl-srpm
794
B
-rw-r--r--
2019-10-13 14:18
macros.pybytecompile
886
B
-rw-r--r--
2023-05-16 12:55
macros.python
3.36
KB
-rw-r--r--
2023-05-16 12:55
macros.python-srpm
5.95
KB
-rw-r--r--
2023-05-16 12:55
macros.python2
1.82
KB
-rw-r--r--
2022-04-21 15:26
macros.python3
3.63
KB
-rw-r--r--
2023-05-16 12:55
macros.qt5-qtbase
78
B
-rw-r--r--
2024-07-18 17:55
macros.ruby
1001
B
-rw-r--r--
2023-06-06 14:55
macros.rust-srpm
61
B
-rw-r--r--
2018-01-08 19:15
macros.scl
13.53
KB
-rw-r--r--
2023-04-01 16:10
macros.selinux-policy
6.61
KB
-rw-r--r--
2024-12-17 04:10
macros.systemd
4.03
KB
-rw-r--r--
2025-04-22 01:58
macros.systemtap
206
B
-rw-r--r--
2023-10-14 13:06
macros.valgrind-srpm
127
B
-rw-r--r--
2023-05-15 14:30
macros.vim
40
B
-rw-r--r--
2022-08-02 16:44
macros.vpath
228
B
-rw-r--r--
2023-05-15 14:30
Save
Rename
# Some miscellaneous Fedora-related macros # List files matching inclusion globs, excluding files matching exclusion blogs # Optional parameters: # – -i "<globs>" inclusion globs # – -x "<globs>" exclusion globs # Globs are space-separated lists of shell globs. Such lists require %{quote:} # use for safe rpm argument passing. # Alternatively, set the following rpm variables before calling the macro: # – “listfiles_include” inclusion globs # — “listfiles_exclude” exclusion globs # Arguments passed to the macro without flags will be interpreted as inclusion # globs. %listfiles(i:x:) %{expand: %if %{lua: print(string.len(rpm.expand("%{?-i*}%{?listfiles_include}%*")))} listfiles_include=$(realpath -e --relative-base=. %{?-i*} %{?listfiles_include} %* | sort -u) %if %{lua: print(string.len(rpm.expand("%{?-x*}%{?listfiles_exclude}")))} while IFS= read -r finc ; do realpath -qe --relative-base=. %{?-x*} %{?listfiles_exclude} \\ | sort -u | grep -q "${finc}" || echo "${finc}" done <<< "${listfiles_include}" %else echo "${listfiles_include}" %endif %endif } # https://github.com/rpm-software-management/rpm/issues/581 # Write the contents of a list of rpm variables to a macro file. # The target file must contain the corresponding anchors. # For example %writevars -f myfile foo bar will replace: # @@FOO@@ with the rpm evaluation of %{foo} and # @@BAR@@ with the rpm evaluation of %{bar} # in myfile %writevars(f:) %{lua: local fedora = require "fedora.common" local macrofile = rpm.expand("%{-f*}") local rpmvars = {} for i = 1, rpm.expand("%#") do table.insert(rpmvars, rpm.expand("%" .. i)) end fedora.writevars(macrofile,rpmvars) } # gpgverify verifies signed sources. There is documentation in the script. %gpgverify(k:s:d:) %{lua: local script = rpm.expand("%{_rpmconfigdir}/redhat/gpgverify ") local keyring = rpm.expand("%{-k*}") local signature = rpm.expand("%{-s*}") local data = rpm.expand("%{-d*}") print(script) if keyring ~= "" then print(rpm.expand("--keyring='%{SOURCE" .. keyring .. "}' ")) end if signature ~= "" then print(rpm.expand("--signature='%{SOURCE" .. signature .. "}' ")) end if data ~= "" then print(rpm.expand("--data='%{SOURCE" .. data .. "}' ")) end } # gpgverify verifies signed sources. There is documentation in the script. %gpgverify(k:s:d:) %{lua: local script = rpm.expand("%{_rpmconfigdir}/redhat/gpgverify ") local keyring = rpm.expand("%{-k*}") local signature = rpm.expand("%{-s*}") local data = rpm.expand("%{-d*}") print(script) if keyring ~= "" then print(rpm.expand("--keyring='%{SOURCE" .. keyring .. "}' ")) end if signature ~= "" then print(rpm.expand("--signature='%{SOURCE" .. signature .. "}' ")) end if data ~= "" then print(rpm.expand("--data='%{SOURCE" .. data .. "}' ")) end }