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 : 18.116.239.11
Domains :
Cant Read [ /etc/named.conf ]
User : derozboy
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
# # 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}