/usr/libexec
NameSizeModeActions
awk/-0755rm
bluetooth/-0755rm
cloud-init/-0755rm
coreutils/-0755rm
cpanel-pdns/-0755rm
dbus-1/-0755rm
dovecot/-0755rm
fwupd/-0755rm
gawk/-0755rm
gcc/-0755rm
getconf/-0755rm
grubby/-0755rm
hostname/-0755rm
imunify-notifier/-0755rm
initscripts/-0755rm
installkernel/-0755rm
linux-boot-probes/-0755rm
man-db/-0755rm
microcode_ctl/-0755rm
nfs-utils/-0755rm
openldap/-0755rm
openssh/-0755rm
os-prober/-0755rm
os-probes/-0755rm
p11-kit/-0755rm
selinux/-0755rm
smartmontools/-0755rm
sssd/-0755rm
sudo/-0755rm
tuned/-0755rm
udisks2/-0755rm
utempter/-0755rm
audit-functions9900750editdlrm
chrony-helper73470755editdlrm
dirmngr_ldap894240755editdlrm
dnf-utils37020755editdlrm
ebtables13620755editdlrm
exim.daemon7580755editdlrm
generate-rndc-key.sh5460755editdlrm
gpg-check-pattern1145920755editdlrm
gpg-preset-passphrase893200755editdlrm
gpg-protect-tool2113360755editdlrm
gpg-wks-client2326800755editdlrm
grepconf.sh2530755editdlrm
import-state10580755editdlrm
imunify-message-gateway83408720755editdlrm
loadmodules2330755editdlrm
nfsrahead380240755editdlrm
nm-daemon-helper129040755editdlrm
nm-dhcp-helper165920755editdlrm
nm-dispatcher677520755editdlrm
nm-initrd-generator7581440755editdlrm
no-python1570755editdlrm
platform-python118720755editdlrm
platform-python-config2040755editdlrm
platform-python3.6118720755editdlrm
platform-python3.6-config2040755editdlrm
platform-python3.6m118720755editdlrm
platform-python3.6m-config2040755editdlrm
platform-python3.6m-x86_64-config36260755editdlrm
report-command-error88050400755editdlrm
run-with-intensity66736960755editdlrm
scdaemon4530320755editdlrm
virt-what-cpuid-helper81040755editdlrm
Edit: /usr/libexec/import-state (1058B)
#!/bin/bash # import-state: import state files from initramfs (e.g. network config) # Copy state into root folder: # ============================ cd /run/initramfs/state IFS_backup=$IFS IFS=$'\n' # Process find's results line by line dirs_found=$(find . -type d) for dir in $dirs_found; do pushd "$dir" > /dev/null # Remove initial '.' char from the find's result: dest_dir="${dir/\./}" # Create destination folder if it does not exist (with the same rights): if [[ -n "$dest_dir" && ! -d "$dest_dir" ]]; then mkdir -p "$dest_dir" chmod --reference="$PWD" "$dest_dir" chown --reference="$PWD" "$dest_dir" fi # Copy all files that are not directory: find . -mindepth 1 -maxdepth 1 -not -type d -exec cp -av -t "$dest_dir" {} \; > /dev/null popd > /dev/null done IFS=$IFS_backup # Run restorecon on the copied files: # =================================== if [ -e /sys/fs/selinux/enforce ] && [ -x /usr/sbin/restorecon ]; then find . -mindepth 1 -print0 | { cd / && xargs --null restorecon -iF; } fi