/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/generate-rndc-key.sh (546B)
#!/bin/bash . /etc/rc.d/init.d/functions # This script generates /etc/rndc.key if doesn't exist AND if there is no rndc.conf if [ ! -s /etc/rndc.key -a ! -s /etc/rndc.conf ]; then echo -n $"Generating /etc/rndc.key:" if /usr/sbin/rndc-confgen -a -A hmac-sha256 -r /dev/urandom > /dev/null 2>&1 then chmod 640 /etc/rndc.key chown root:named /etc/rndc.key [ -x /sbin/restorecon ] && /sbin/restorecon /etc/rndc.key success $"/etc/rndc.key generation" echo else failure $"/etc/rndc.key generation" echo fi fi