X7ROOT File Manager
Current Path:
/usr/libexec
usr
/
libexec
/
📁
..
📄
audit-functions
(990 B)
📁
awk
📄
chrony-helper
(7.17 KB)
📁
coreutils
📁
cpanel-pdns
📁
dbus-1
📄
dirmngr_ldap
(87.32 KB)
📄
dnf-utils
(3.62 KB)
📁
dovecot
📄
ebtables
(1.33 KB)
📄
exim.daemon
(758 B)
📄
fprintd
(131.53 KB)
📁
gawk
📁
gcc
📄
generate-rndc-key.sh
(546 B)
📁
getconf
📄
gpg-check-pattern
(111.88 KB)
📄
gpg-preset-passphrase
(87.21 KB)
📄
gpg-protect-tool
(206.3 KB)
📄
gpg-wks-client
(227.22 KB)
📄
grepconf.sh
(253 B)
📁
grubby
📁
hostname
📄
import-state
(1.03 KB)
📄
imunify-message-gateway
(5.13 MB)
📁
imunify-notifier
📁
initscripts
📁
installkernel
📄
iscsi-mark-root-nodes
(856 B)
📁
linux-boot-probes
📄
loadmodules
(233 B)
📁
lsm.d
📁
man-db
📁
mc
📁
microcode_ctl
📄
mlocate-run-updatedb
(138 B)
📁
nfs-utils
📄
nfsrahead
(37.12 KB)
📄
nm-daemon-helper
(12.59 KB)
📄
nm-dhcp-helper
(16.2 KB)
📄
nm-dispatcher
(66.16 KB)
📄
nm-initrd-generator
(740.53 KB)
📄
no-python
(157 B)
📁
oddjob
📁
openldap
📁
openssh
📁
os-prober
📁
os-probes
📁
p11-kit
📄
platform-python
(11.59 KB)
📄
platform-python-config
(204 B)
📄
platform-python3.6
(11.59 KB)
📄
platform-python3.6-config
(204 B)
📄
platform-python3.6m
(11.59 KB)
📄
platform-python3.6m-config
(204 B)
📄
platform-python3.6m-x86_64-config
(3.54 KB)
📁
plymouth
📁
psacct
📄
realmd
(329.09 KB)
📄
report-command-error
(7.54 MB)
📄
run-with-intensity
(5.48 MB)
📄
scdaemon
(442.36 KB)
📁
selinux
📁
smartmontools
📁
sssd
📁
sudo
📄
tcawmgr.cgi
(25.1 KB)
📁
tuned
📁
utempter
📄
vdoprepareforlvm
(544.64 KB)
📄
virt-what-cpuid-helper
(7.91 KB)
Editing: ebtables
#!/bin/bash RETVAL=0 EBTCONF=/etc/sysconfig/ebtables initialize() { # Initialize $TYPE tables echo -n $" $TYPE tables: " if [ -r /etc/sysconfig/ebtables.$TYPE ]; then /sbin/ebtables -t $TYPE --atomic-file /etc/sysconfig/ebtables.$TYPE --atomic-commit > /dev/null || RETVAL=1 else echo -n "not configured" fi if [ $RETVAL -eq 0 ]; then echo -n $"[ OK ]" echo -ne "\r" else echo -n $"[FAILED]" echo -ne "\r" fi } case $1 in start) if [[ -r $EBTCONF ]]; then ebtables-restore <$EBTCONF RETVAL=$? else echo -n "not configured" fi if [ $RETVAL -eq 0 ]; then echo -n $"[ OK ]" echo -ne "\r" else echo -n $"[FAILED]" echo -ne "\r" fi ;; stop) [[ $EBTABLES_SAVE_ON_STOP == "yes" ]] && $0 save /sbin/ebtables --init-table RETVAL=$? if [ $RETVAL -eq 0 ]; then echo -n $"[ OK ]" echo -ne "\r" else echo -n $"[FAILED]" echo -ne "\r" fi ;; save) echo -n $"Saving Ethernet bridge filtering (ebtables): " ebtables-save >$EBTCONF RETVAL=$? if [ $RETVAL -eq 0 ]; then echo -n $"[ OK ]" echo -ne "\r" else echo -n $"[FAILED]" echo -ne "\r" fi ;; *) echo "usage: ${0##*/} {start|stop|save}" >&2 exit 1 ;; esac # vim:set ts=2 sw=2 ft=sh et:
Upload File
Create Folder