/usr/libexec
NameSizeModeActions
awk/-0755rm
coreutils/-0755rm
cpanel-pdns/-0755rm
dbus-1/-0755rm
docker/-0755rm
dovecot/-0755rm
gawk/-0755rm
gcc/-0755rm
getconf/-0755rm
git-core/-0755rm
grubby/-0755rm
hostname/-0755rm
imunify-notifier/-0755rm
initscripts/-0755rm
installkernel/-0755rm
iptables/-0755rm
linux-boot-probes/-0755rm
man-db/-0755rm
microcode_ctl/-0755rm
nfs-utils/-0755rm
oddjob/-0755rm
openldap/-0755rm
openssh/-0755rm
os-prober/-0755rm
os-probes/-0755rm
p11-kit/-0755rm
plymouth/-0755rm
selinux/-0755rm
smartmontools/-0755rm
sudo/-0755rm
systemtap/-0755rm
tuned/-0755rm
utempter/-0755rm
audit-functions9900750editdlrm
chrony-helper73470755editdlrm
dirmngr_ldap894240755editdlrm
dnf-utils37020755editdlrm
ebtables13620755editdlrm
exim.daemon7580755editdlrm
gdb115276480755editdlrm
generate-rndc-key.sh5460755editdlrm
gpg-check-pattern1145920755editdlrm
gpg-preset-passphrase893200755editdlrm
gpg-protect-tool2113360755editdlrm
gpg-wks-client2326800755editdlrm
grepconf.sh2530755editdlrm
import-state10580755editdlrm
imunify-message-gateway83408720755editdlrm
loadmodules2330755editdlrm
netconsole45690755editdlrm
nfsrahead380240755editdlrm
nm-daemon-helper129040755editdlrm
nm-dhcp-helper165920755editdlrm
nm-dispatcher677520755editdlrm
nm-ifdown10930755editdlrm
nm-ifup10620755editdlrm
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
readonly-root59280755editdlrm
report-command-error88050400755editdlrm
run-with-intensity66736960755editdlrm
scdaemon4530320755editdlrm
tcawmgr.cgi257040755editdlrm
virt-what-cpuid-helper81040755editdlrm
Edit: /usr/libexec/nm-ifdown (1093B)
#!/bin/bash CONFIG="$1" if [ -z "${CONFIG}" ] ; then echo $"Usage: ifdown " >&2 exit 1 fi usage_and_fail() { cat <&2 $1! See all profiles with \`nmcli connection\`. Reload files from disk with \`nmcli connection reload\` Deactivate the desired profile with \`nmcli connection down \"\$NAME\"\` EOF exit 1 } OLD_IFS="$IFS" re='^/etc/sysconfig/network-scripts/ifcfg-[^/]+$' for f in "/etc/sysconfig/network-scripts/ifcfg-$CONFIG" "/etc/sysconfig/network-scripts/$CONFIG" ; do [[ "$f" =~ $re ]] || continue [ -f "$f" ] || continue nmcli connection load "$f" \ && nmcli connection down filename "$f" \ && exit 0 usage_and_fail "Failure to deactivate file \"$CONFIG\"" done IFS=$'\n ' APATHS=( $(nmcli -g GENERAL.DBUS-PATH connection show --active "$CONFIG" 2>/dev/null) ) IFS="$OLD_IFS" if [ "${#APATHS[@]}" -eq 1 ] ; then nmcli connection down apath "${APATHS[0]}" \ && exit 0 usage_and_fail "Failure to deactivate profile \"$CONFIG\" (apath ${APATHS[@]})" fi usage_and_fail "No suitable profile \"$CONFIG\" found"