Linux velvet.gennetworks.in 4.18.0-553.83.1.lve.el8.x86_64 #1 SMP Wed Nov 12 10:04:12 UTC 2025 x86_64
LiteSpeed
Server IP : 161.129.70.235 & Your IP : 216.73.216.5
Domains :
Cant Read [ /etc/named.conf ]
User : virtueex
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
usr /
lib /
rpm /
macros.d /
Delete
Unzip
Name
Size
Permission
Date
Action
macros.alt-python310
2.01
KB
-rw-r--r--
2025-06-18 21:25
macros.alt-python311
2.03
KB
-rw-r--r--
2025-06-23 21:18
macros.alt-python312
2.01
KB
-rw-r--r--
2025-06-23 19:30
macros.alt-python313
2.01
KB
-rw-r--r--
2025-06-23 20:09
macros.alt-python38
1.97
KB
-rw-r--r--
2024-09-23 16:56
macros.alt-python39
1.98
KB
-rw-r--r--
2025-06-19 17:41
macros.dwz
1.76
KB
-rw-r--r--
2023-05-15 20:00
macros.efi-srpm
3
KB
-rw-r--r--
2021-11-24 04:02
macros.environment-modules
75
B
-rw-r--r--
2020-07-30 17:43
macros.fedora-misc
2.76
KB
-rw-r--r--
2023-05-15 20:00
macros.fedora-misc-srpm
239
B
-rw-r--r--
2023-05-15 20:00
macros.firewalld
239
B
-rw-r--r--
2025-03-11 15:21
macros.forge
12.43
KB
-rw-r--r--
2023-05-15 20:00
macros.ghc-srpm
414
B
-rw-r--r--
2018-08-12 16:07
macros.go-srpm
7.17
KB
-rw-r--r--
2021-04-08 20:15
macros.info
390
B
-rw-r--r--
2022-04-18 22:39
macros.kernel-srpm
116
B
-rw-r--r--
2023-05-15 20:00
macros.ldc-srpm
73
B
-rw-r--r--
2023-05-15 20:00
macros.ldconfig
307
B
-rw-r--r--
2023-05-15 20:00
macros.mono-srpm
181
B
-rw-r--r--
2023-05-15 20:00
macros.nodejs-srpm
324
B
-rw-r--r--
2023-05-15 20:00
macros.ocaml-srpm
737
B
-rw-r--r--
2019-10-14 14:01
macros.openblas-srpm
104
B
-rw-r--r--
2019-10-17 02:17
macros.perl
5.06
KB
-rw-r--r--
2025-07-28 13:31
macros.perl-srpm
794
B
-rw-r--r--
2019-10-13 19:48
macros.pybytecompile
886
B
-rw-r--r--
2023-05-16 18:25
macros.python
3.36
KB
-rw-r--r--
2023-05-16 18:25
macros.python-srpm
5.95
KB
-rw-r--r--
2023-05-16 18:25
macros.python3
3.63
KB
-rw-r--r--
2023-05-16 18:25
macros.ruby
1001
B
-rw-r--r--
2023-06-06 20:25
macros.rust-srpm
61
B
-rw-r--r--
2018-01-09 00:45
macros.selinux-policy
6.61
KB
-rw-r--r--
2024-12-17 09:40
macros.systemd
4.03
KB
-rw-r--r--
2026-01-26 14:59
macros.systemtap
206
B
-rw-r--r--
2023-10-14 18:36
macros.valgrind-srpm
127
B
-rw-r--r--
2023-05-15 20:00
macros.vim
40
B
-rw-r--r--
2025-10-12 05:46
macros.vpath
228
B
-rw-r--r--
2023-05-15 20:00
Save
Rename
# # EFI specific SRPM macro definitions # # Copyright 2018 Peter M Jones <pjones@redhat.com> # # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or (at # your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see <https://www.gnu.org/licenses/>. # %_efi_srpm_macros_setup() %{expand:%{lua: -- test if our arch matches local function arch(archmacro) local target = rpm.expand(" %{_target_cpu} ") local arches = rpm.expand(" " .. archmacro .. " ") local match = string.match(arches, target) return (match ~= nil) end -- give us the arch... local function getarch() if arch("ia64") then return("ia64") elseif arch("x86_64") then return("x64") elseif arch("%{ix86}") then return("ia32") elseif arch("aarch64") then return("aa64") elseif arch("%{arm}") then return("arm") else return("none") end end -- alt arch local function getaltarch() if arch("x86_64") then return("ia32") else return("none") end end -- make some macros local done = rpm.expand("%{?_efi}") if done == nil or done == "" then local arch = getarch() local alt = getaltarch() print("%global _efi x86_64 aarch64 %{arm} %{ix86}\\n") print("%global _efi_vendor cloudlinux\\n") if arch == "none" then print("%global _efi_has_arch 0\\n") else print("%global _efi_has_arch 1\\n") end print("%global _efi_arch " .. getarch() .. "\\n") print("%global _efi_arch_upper " .. string.upper(getarch()) .. "\\n") if alt == "none" then print("%global _efi_has_alt_arch 0\\n") else print("%global _efi_has_alt_arch 1\\n") end print("%global _efi_alt_arch " .. alt .. "\\n") print("%global _efi_alt_arch_upper " .. string.upper(alt) .. "\\n") end }} %efi_srpm_macros_version %{expand:%{_efi_srpm_macros_setup}}3 %efi %{expand:%{_efi_srpm_macros_setup}}%{expand:%{_efi}} %efi_vendor %{expand:%{_efi_srpm_macros_setup}}%{expand:%{_efi_vendor}} %efi_esp_root /boot/efi %efi_esp_efi %{efi_esp_root}/EFI %efi_esp_boot %{efi_esp_efi}/BOOT %efi_esp_dir %{expand:%{_efi_srpm_macros_setup}}%{efi_esp_efi}/centos %efi_arch %{expand:%{_efi_srpm_macros_setup}}%{_efi_arch} %efi_arch_upper %{expand:%{_efi_srpm_macros_setup}}%{_efi_arch_upper} %efi_has_arch %{expand:%{_efi_srpm_macros_setup}}0%{_efi_has_arch} %efi_has_alt_arch %{expand:%{_efi_srpm_macros_setup}}0%{_efi_has_alt_arch} %efi_alt_arch %{expand:%{_efi_srpm_macros_setup}}%{?_efi_alt_arch}%{nil} %efi_alt_arch_upper %{expand:%{_efi_srpm_macros_setup}}%{?_efi_alt_arch_upper}%{nil}