PATH:
usr
/
sbin
#! /bin/sh # Copyright (c) The Exim Maintainers 2023 # Copyright (c) University of Cambridge, 1995 - 2015 # See the file NOTICE for conditions of use and distribution. # SPDX-License-Identifier: GPL-2.0-or-later # This script takes the following command line arguments: # -l dir Log file directory # -k days Number of days to keep the log files # Except when they appear in comments, the following placeholders in this # source are replaced when it is turned into a runnable script: # # CONFIGURE_FILE_USE_NODE # CONFIGURE_FILE_USE_EUID # CONFIGURE_FILE # BIN_DIRECTORY # EXICYCLOG_MAX # COMPRESS_COMMAND # COMPRESS_SUFFIX # CHOWN_COMMAND # CHGRP_COMMAND # CHMOD_COMMAND # TOUCH_COMMAND # MV_COMMAND # RM_COMMAND # This file has been so processed. # This is a shell script for cycling exim main and reject log files. Each time # it is run, the files get "shuffled down" by one, the current one (e.g. # mainlog) becoming mainlog.01, the previous mainlog.01 becoming mainlog.02, # and so on, up to the limit configured here. When the number to keep is # greater than 99 (not common, but some people do it), three digits are used # (e.g. mainlog.001). The same shuffling happens to the reject logs. All # renamed files with numbers greater than 1 are compressed. # This script should be called regularly (e.g. daily) by a root crontab # entry of the form # 1 0 * * * /opt/exim/bin/exicyclog # The following lines are generated from Exim's configuration file when # this source is built into a script, but you can subsequently edit them # without rebuilding things, as long are you are careful not to overwrite # the script in the next Exim rebuild/install. "Keep" is the number of old log # files that are required to be kept. Its value can be overridden by the -k # command line option. "Compress" and "suffix" define your chosen compression # method. The others are provided because the location of certain commands # varies from OS to OS. Sigh. keep=10 compress=/usr/bin/gzip suffix=gz chgrp=look_for_it chmod=look_for_it chown=look_for_it mv=/bin/mv rm=/bin/rm touch=/usr/bin/touch # End of editable lines ######################################################################### # Sort out command line options. while [ $# -gt 0 ] ; do case "$1" in -l) log_file_path=$2 shift ;; -k) keep=$2 shift ;; --version|-v) echo "`basename $0`: $0" echo "build: 4.99.1" exit 0 ;; *) echo "** exicyclog: unknown option $1" exit 1 ;; esac shift done # Some operating systems have different versions in which the commands live # in different places. We have a fudge that will search the usual suspects if # requested. for cmd in chgrp chmod chown mv rm touch; do eval "oldcmd=\$$cmd" if [ "$oldcmd" != "look_for_it" ] ; then continue ; fi newcmd=$cmd for dir in /bin /usr/bin /usr/sbin /usr/etc ; do if [ -f $dir/$cmd ] ; then newcmd=$dir/$cmd break fi done eval $cmd=$newcmd done # See if this installation is using the esoteric "USE_EUID" feature of Exim, # in which it uses the effective user id as a suffix for the configuration file # name. In order for this to work, exicyclog must be run under the appropriate # euid. if [ "" = "yes" ]; then euid=.`id -u` fi # See if this installation is using the esoteric "USE_NODE" feature of Exim, # in which it uses the host's name as a suffix for the configuration file name. if [ "" = "yes" ]; then hostsuffix=.`uname -n` fi # Now find the configuration file name. This has got complicated because the # CONFIGURE_FILE value may now be a list of files. The one that is used is the # first one that exists. Mimic the code in readconf.c by testing first for the # suffixed file in each case. set `awk -F: '{ for (i = 1; i <= NF; i++) print $i }' <<End /etc/exim.conf End ` while [ "$config" = "" -a $# -gt 0 ] ; do if [ -f "$1$euid$hostsuffix" ] ; then config="$1$euid$hostsuffix" elif [ -f "$1$euid" ] ; then config="$1$euid" elif [ -f "$1$hostsuffix" ] ; then config="$1$hostsuffix" elif [ -f "$1" ] ; then config="$1" fi shift done # Determine if the log file path is set, and where the spool directory is. # Search for an exim_path setting in the configure file; otherwise use the bin # directory. Call that version of Exim to find the spool directory and log file # path, unless log_file_path was set above by a command line option. BEWARE: a # tab character is needed in the command below. It has had a nasty tendency to # get lost in the past. Use a variable to hold a space and a tab to keep the # tab in one place. st=' ' exim_path=`grep "^[$st]*exim_path" $config | sed "s/.*=[$st]*//"` if test "$exim_path" = ""; then exim_path=/usr/sbin/exim; fi spool_directory=`$exim_path -C $config -bP spool_directory | sed 's/.*=[ ]*//'` if [ "$log_file_path" = "" ] ; then log_file_path=`$exim_path -C $config -bP log_file_path | sed 's/.*=[ ]*//'` fi # If log_file_path contains only "syslog" then no Exim log files are in use. # We can't cycle anything. Complain and give up. if [ "$log_file_path" = "syslog" ] ; then echo "*** Exim is logging to syslog - no log files to cycle ***" exit 1 fi # Otherwise, remove ":syslog" or "syslog:" (some spaces allowed) and inspect # what remains. The simplistic regex originally used failed when a filename # contained "syslog", so we have to use three less general ones, because sed # doesn't have much power in its regexs. log_file_path=`echo "$log_file_path" | \ sed 's/^ *:\{0,1\} *syslog *:\{0,1\} *//;s/: *syslog *:/:/;s/: *syslog *$//'` # If log_file_path is empty, try and get the compiled in default by using # /dev/null as the configuration file. if [ "$log_file_path" = "" ]; then log_file_path=`$exim_path -C /dev/null -bP log_file_path | sed 's/.*=[ ]*//'` log_file_path=`echo "$log_file_path" | \ sed 's/^ *:\{0,1\} *syslog *:\{0,1\} *//;s/: *syslog *:/:/;s/: *syslog *$//'` fi # If log_file_path is still empty, the logs we are interested in are probably # called "mainlog" and "rejectlog" in the directory called "log" in the spool # directory. Otherwise we fish out the directory from the given path, and also # the names of the logs. if [ "$log_file_path" = "" ]; then logdir=$spool_directory/log mainlog=mainlog rejectlog=rejectlog paniclog=paniclog else logdir=`echo $log_file_path | sed 's?/[^/]*$??'` logbase=`echo $log_file_path | sed 's?^.*/??'` mainlog=`echo $logbase | sed 's/%s/main/'` rejectlog=`echo $logbase | sed 's/%s/reject/'` paniclog=`echo $logbase | sed 's/%s/panic/'` fi # Get into the log directory to do the business. cd $logdir || exit 1 # If there is no main log file, do nothing. if [ ! -f $mainlog ]; then exit; fi # Find out the owner and group of the main log file so that we can re-instate # this on moved and compressed files, since some operating systems may change # things. This is a tedious bit of code, but it should work both in operating # systems where the -l option of ls gives the user and group, and those in which # you need -lg. The condition is that, if the fifth field of the output from # ls consists entirely of digits, then the third and fourth fields are the user # and group. a=`ls -lg $mainlog` b=`ls -l $mainlog` # These statements work fine in the Bourne or Korn shells, but not in Bash. # So for the benefit of systems whose /bin/sh is really Bash, they have been # changed to a messier form. # user=`echo "$a\n$b\n" | awk 'BEGIN { OFS=""} { if ($5 ~ /^[0-9]+$/) print $3; }'` # group=`echo "$a\n$b\n" | awk 'BEGIN { OFS=""} { if ($5 ~ /^[0-9]+$/) print $4; }'` user=`echo "$a $b " | awk 'BEGIN { OFS=""} { if ($5 ~ /^[0-9]+$/) { print $3; exit; } }'` group=`echo "$a $b " | awk 'BEGIN { OFS=""} { if ($5 ~ /^[0-9]+$/) { print $4; exit; } }'` # Now do the job. First remove the files that have "fallen off the bottom". # Look for both the compressed and uncompressed forms. if [ $keep -lt 10 ]; then rotation=0$keep; else rotation=$keep; fi; if [ -f $mainlog.$rotation ]; then $rm $mainlog.$rotation; fi; if [ -f $mainlog.$rotation.$suffix ]; then $rm $mainlog.$rotation.$suffix; fi; if [ -f $rejectlog.$rotation ]; then $rm $rejectlog.$rotation; fi; if [ -f $rejectlog.$rotation.$suffix ]; then $rm $rejectlog.$rotation.$suffix; fi; if [ -f $paniclog.$rotation ]; then $rm $paniclog.$rotation; fi; if [ -f $paniclog.$rotation.$suffix ]; then $rm $paniclog.$rotation.$suffix; fi; # Now rename all the previous old files by increasing their numbers by 1. # When the number is less than 10, insert a leading zero. count=$keep if [ $count -lt 10 ]; then countt=0$count; else countt=$count; fi while [ $count -gt 1 ]; do old=`expr -- $count - 1` if [ $keep -gt 99 ]; then if [ $old -lt 10 ]; then oldt=00$old elif [ $old -lt 100 ]; then oldt=0$old else oldt=$old fi else if [ $old -lt 10 ]; then oldt=0$old; else oldt=$old; fi; fi if [ -f $mainlog.$oldt ]; then $mv $mainlog.$oldt $mainlog.$countt elif [ -f $mainlog.$oldt.$suffix ]; then $mv $mainlog.$oldt.$suffix $mainlog.$countt.$suffix fi if [ -f $rejectlog.$oldt ]; then $mv $rejectlog.$oldt $rejectlog.$countt elif [ -f $rejectlog.$oldt.$suffix ]; then $mv $rejectlog.$oldt.$suffix $rejectlog.$countt.$suffix fi if [ -f $paniclog.$oldt ]; then $mv $paniclog.$oldt $paniclog.$countt elif [ -f $paniclog.$oldt.$suffix ]; then $mv $paniclog.$oldt.$suffix $paniclog.$countt.$suffix fi count=$old countt=$oldt done # Now rename the current files as 01 or 001 if keeping more than 99 if [ $keep -gt 99 ]; then first=001; else first=01; fi # Grab our pid ro avoid race in file creation ourpid=$$ if [ -f $mainlog ]; then $mv $mainlog $mainlog.$first $chown $user:$group $mainlog.$first $touch $mainlog.$ourpid $chown $user:$group $mainlog.$ourpid $chmod 640 $mainlog.$ourpid $mv $mainlog.$ourpid $mainlog fi if [ -f $rejectlog ]; then $mv $rejectlog $rejectlog.$first $chown $user:$group $rejectlog.$first $touch $rejectlog.$ourpid $chown $user:$group $rejectlog.$ourpid $chmod 640 $rejectlog.$ourpid $mv $rejectlog.$ourpid $rejectlog fi if [ -f $paniclog ]; then $mv $paniclog $paniclog.$first $chown $user:$group $paniclog.$first $touch $paniclog.$ourpid $chown $user:$group $paniclog.$ourpid $chmod 640 $paniclog.$ourpid $mv $paniclog.$ourpid $paniclog fi # Now scan the (0)02 and later files, compressing where necessary, and # ensuring that their owners and groups are correct. count=2; while [ $count -le $keep ]; do if [ $keep -gt 99 ]; then if [ $count -lt 10 ]; then countt=00$count elif [ $count -lt 100 ]; then countt=0$count else countt=$count fi else if [ $count -lt 10 ]; then countt=0$count; else countt=$count; fi fi if [ -f $mainlog.$countt ]; then $compress $mainlog.$countt; fi if [ -f $mainlog.$countt.$suffix ]; then $chown $user:$group $mainlog.$countt.$suffix fi if [ -f $rejectlog.$countt ]; then $compress $rejectlog.$countt; fi if [ -f $rejectlog.$countt.$suffix ]; then $chown $user:$group $rejectlog.$countt.$suffix fi if [ -f $paniclog.$countt ]; then $compress $paniclog.$countt; fi if [ -f $paniclog.$countt.$suffix ]; then $chown $user:$group $paniclog.$countt.$suffix fi count=`expr -- $count + 1` done # End of exicyclog
[+]
..
[-] exim_fixdb
[edit]
[-] getpolicyload
[edit]
[-] bpftool
[edit]
[-] xfs_growfs
[edit]
[-] kpatch
[edit]
[-] pivot_root
[edit]
[-] fsfreeze
[edit]
[-] named-checkzone
[edit]
[-] xfs_info
[edit]
[-] lvm
[edit]
[-] paperconfig
[edit]
[-] pure-config.pl
[edit]
[-] vgextend
[edit]
[-] xfs_logprint
[edit]
[-] xfsdump
[edit]
[-] faillock
[edit]
[-] eximstats
[edit]
[-] grpck
[edit]
[-] iptables-translate
[edit]
[-] pwconv
[edit]
[-] xfs_ncheck
[edit]
[-] iptables-restore
[edit]
[-] xfs_admin
[edit]
[-] xfs_fsr
[edit]
[-] key.dns_resolver
[edit]
[-] ping
[edit]
[-] iptables-nft
[edit]
[-] whmapi1
[edit]
[-] nfsdclnts
[edit]
[-] lnewusers
[edit]
[-] chkconfig
[edit]
[-] ip6tables-restore
[edit]
[-] validatetrans
[edit]
[-] vgconvert
[edit]
[-] luserdel
[edit]
[-] mkfs.minix
[edit]
[-] thin_migrate
[edit]
[-] pvck
[edit]
[-] mkfs.ext4
[edit]
[-] rpcinfo
[edit]
[-] lvmdump
[edit]
[-] cache_restore
[edit]
[-] readprofile
[edit]
[-] arptables-nft-restore
[edit]
[-] mountstats
[edit]
[-] sysctl
[edit]
[-] ctstat
[edit]
[-] tcpdump
[edit]
[-] ping6
[edit]
[-] blkdiscard
[edit]
[-] atd
[edit]
[-] avcstat
[edit]
[-] xtables-nft-multi
[edit]
[-] pwunconv
[edit]
[-] ownership
[edit]
[-] ethtool
[edit]
[-] mtr-packet
[edit]
[-] xfs_repair
[edit]
[-] setquota
[edit]
[-] adcli
[edit]
[-] update-pciids
[edit]
[-] rpc.statd
[edit]
[-] grpunconv
[edit]
[-] cache_metadata_size
[edit]
[-] chcpu
[edit]
[-] exim_dumpdb
[edit]
[-] runq
[edit]
[-] nfsdcld
[edit]
[-] intel_sdsi
[edit]
[-] getpcaps
[edit]
[-] atrun
[edit]
[-] request-key
[edit]
[-] thin_ls
[edit]
[-] iptables-restore-translate
[edit]
[-] rdisc
[edit]
[-] iprupdate
[edit]
[-] addpart
[edit]
[-] sm-notify
[edit]
[-] e2image
[edit]
[-] grub2-bios-setup
[edit]
[-] vgremove
[edit]
[-] era_check
[edit]
[-] dhclient-script
[edit]
[-] e2undo
[edit]
[-] mkdict
[edit]
[-] mpathconf
[edit]
[-] pdata_tools
[edit]
[-] anacron
[edit]
[-] pure-ftpwho
[edit]
[-] unix_chkpwd
[edit]
[-] cracklib-packer
[edit]
[-] tracepath6
[edit]
[-] rtcwake
[edit]
[-] clock
[edit]
[-] chroot
[edit]
[-] ifstat
[edit]
[-] iscsistart
[edit]
[-] ebtables-save
[edit]
[-] pure-ftpd
[edit]
[-] dnssec-keyfromlabel
[edit]
[-] route
[edit]
[-] lvmconfig
[edit]
[-] setpci
[edit]
[-] iprdump
[edit]
[-] lvmsar
[edit]
[-] crond
[edit]
[-] vgimportdevices
[edit]
[-] iscsid
[edit]
[-] vgimport
[edit]
[-] iprconfig
[edit]
[-] thin_restore
[edit]
[-] dnssec-dsfromkey
[edit]
[-] lvremove
[edit]
[-] rndc-confgen
[edit]
[-] nfsdclddb
[edit]
[-] depmod
[edit]
[-] arptables-save
[edit]
[-] logrotate
[edit]
[-] fsck.xfs
[edit]
[-] vgcfgbackup
[edit]
[-] semanage
[edit]
[-] pvs
[edit]
[-] unsquashfs
[edit]
[-] vgchange
[edit]
[-] genl
[edit]
[-] ebtables-translate
[edit]
[-] selabel_get_digests_all_partial_matches
[edit]
[-] hwclock
[edit]
[-] pure-authd
[edit]
[-] delpart
[edit]
[-] vgmerge
[edit]
[-] lvmsadc
[edit]
[-] grub2-switch-to-blscfg
[edit]
[-] exim_dbmbuild
[edit]
[-] mount.nfs4
[edit]
[-] zramctl
[edit]
[-] e2freefrag
[edit]
[-] ldattach
[edit]
[-] xfs_io
[edit]
[-] mariadbd
[edit]
[-] rpcdebug
[edit]
[-] sfdisk
[edit]
[-] reboot
[edit]
[-] init
[edit]
[-] convertquota
[edit]
[-] partx
[edit]
[-] suexec
[edit]
[-] smartd
[edit]
[-] lsmod
[edit]
[-] xfs_mdrestore
[edit]
[-] nameif
[edit]
[-] era_restore
[edit]
[-] pure-mrtginfo
[edit]
[-] selinux_check_access
[edit]
[-] grub2-install
[edit]
[-] groupdel
[edit]
[-] thin_dump
[edit]
[-] vigr
[edit]
[-] dmeventd
[edit]
[-] mkfs.msdos
[edit]
[-] install-info
[edit]
[-] imunify-notifier
[edit]
[-] alternatives
[edit]
[-] selinuxconlist
[edit]
[-] visudo
[edit]
[-] pure-uploadscript
[edit]
[-] tmpwatch
[edit]
[-] lfd
[edit]
[-] ip6tables-nft-save
[edit]
[-] dnssec-verify
[edit]
[-] dump-acct
[edit]
[-] exiqsumm
[edit]
[-] ipset
[edit]
[-] sefcontext_compile
[edit]
[-] dovecot
[edit]
[-] lgroupmod
[edit]
[-] sasldblistusers2
[edit]
[-] grpconv
[edit]
[-] selabel_lookup_best_match
[edit]
[-] udevadm
[edit]
[-] newusers
[edit]
[-] sestatus
[edit]
[-] dump-utmp
[edit]
[-] grub2-get-kernel-settings
[edit]
[-] lspci
[edit]
[-] service
[edit]
[-] ss
[edit]
[-] blkdeactivate
[edit]
[-] mklost+found
[edit]
[-] era_invalidate
[edit]
[-] rdma
[edit]
[-] ebtables-restore
[edit]
[-] ip6tables-translate
[edit]
[-] dnssec-revoke
[edit]
[-] fsck.vfat
[edit]
[-] tune2fs
[edit]
[-] iscsiuio
[edit]
[-] selinuxdefcon
[edit]
[-] mke2fs
[edit]
[-] auditd
[edit]
[-] mkswap
[edit]
[-] genhostid
[edit]
[-] dnssec-keygen
[edit]
[-] nologin
[edit]
[-] nfsdcltrack
[edit]
[-] dmidecode
[edit]
[-] named-checkconf
[edit]
[-] sos
[edit]
[-] setcap
[edit]
[-] fcgistarter
[edit]
[-] sa
[edit]
[-] grub2-reboot
[edit]
[-] ldconfig
[edit]
[-] grub2-probe
[edit]
[-] pvchange
[edit]
[-] groupmems
[edit]
[-] vdpa
[edit]
[-] NetworkManager
[edit]
[-] exim_tidydb
[edit]
[-] genhomedircon
[edit]
[-] xfs_quota
[edit]
[-] groupadd
[edit]
[-] semodule
[edit]
[-] dnssec-keymgr
[edit]
[-] lvdisplay
[edit]
[-] rpcctl
[edit]
[-] mysqld
[edit]
[-] fsck.minix
[edit]
[-] thin_repair
[edit]
[-] ctrlaltdel
[edit]
[-] accton
[edit]
[-] umount.nfs
[edit]
[-] start-statd
[edit]
[-] dosfsck
[edit]
[-] pdns_server
[edit]
[-] quotastats
[edit]
[-] grub2-set-default
[edit]
[-] lusermod
[edit]
[-] arp
[edit]
[-] ebtables-nft
[edit]
[-] selabel_digest
[edit]
[-] httpd_ls_bak_bak
[edit]
[-] shutdown
[edit]
[-] fsck.ext4
[edit]
[-] augenrules
[edit]
[-] lgroupadd
[edit]
[-] lvm_import_vdo
[edit]
[-] lvcreate
[edit]
[-] pvresize
[edit]
[-] logsave
[edit]
[-] dnssec-coverage
[edit]
[-] arptables-nft
[edit]
[-] setsebool
[edit]
[-] parted
[edit]
[-] ebtables-nft-save
[edit]
[-] ip6tables
[edit]
[-] mkfs
[edit]
[-] ip
[edit]
[-] cache_check
[edit]
[-] vgsplit
[edit]
[-] exiqgrep
[edit]
[-] kexec
[edit]
[-] tracepath
[edit]
[-] iconvconfig
[edit]
[-] grub2-macbless
[edit]
[-] dcb
[edit]
[-] dovecot_cpshutdown
[edit]
[-] lgroupdel
[edit]
[-] adduser
[edit]
[-] raid-check
[edit]
[-] multipathd
[edit]
[-] modsec-sdbm-util
[edit]
[-] xtables-monitor
[edit]
[-] halt
[edit]
[-] pwhistory_helper
[edit]
[-] blkid
[edit]
[-] ifenslave
[edit]
[-] mount.fuse
[edit]
[-] accessdb
[edit]
[-] update-smart-drivedb
[edit]
[-] sosreport
[edit]
[-] gssproxy
[edit]
[-] grub2-set-password
[edit]
[-] groupmod
[edit]
[-] restorecon
[edit]
[-] fdformat
[edit]
[-] filefrag
[edit]
[-] plymouthd
[edit]
[-] fstrim
[edit]
[-] dnssec-checkds
[edit]
[-] selabel_partial_match
[edit]
[-] cryptsetup
[edit]
[-] e4crypt
[edit]
[-] ledmon
[edit]
[-] showmount
[edit]
[-] chronyd
[edit]
[-] makedumpfile
[edit]
[-] xfsrestore
[edit]
[-] tuned-adm
[edit]
[-] fsck.ext2
[edit]
[-] dosfslabel
[edit]
[-] swapoff
[edit]
[-] firewalld
[edit]
[-] pvscan
[edit]
[-] lvmdevices
[edit]
[-] applygnupgdefaults
[edit]
[-] md-auto-readd.sh
[edit]
[-] xfs_freeze
[edit]
[-] resizepart
[edit]
[-] rpc.idmapd
[edit]
[-] plymouth-set-default-theme
[edit]
[-] ip6tables-nft-restore
[edit]
[-] partprobe
[edit]
[-] matchpathcon
[edit]
[-] nscd
[edit]
[-] vgdisplay
[edit]
[-] vgck
[edit]
[-] rtkitctl
[edit]
[-] selabel_lookup
[edit]
[-] cache_dump
[edit]
[-] mkfs.cramfs
[edit]
[-] ebtables-nft-restore
[edit]
[-] unix_update
[edit]
[-] fsck.msdos
[edit]
[-] telinit
[edit]
[-] lvchange
[edit]
[-] swaplabel
[edit]
[-] selinuxexeccon
[edit]
[-] pidof
[edit]
[-] lvmdiskscan
[edit]
[-] mkdumprd
[edit]
[-] autrace
[edit]
[-] iprdbg
[edit]
[-] fdisk
[edit]
[-] thin_metadata_unpack
[edit]
[-] lvs
[edit]
[-] whmapi0
[edit]
[-] iprsos
[edit]
[-] blockdev
[edit]
[-] xfs_db
[edit]
[-] ipset-translate
[edit]
[-] tsig-keygen
[edit]
[-] edquota
[edit]
[-] xfs_mkfile
[edit]
[-] resize2fs
[edit]
[-] rtacct
[edit]
[-] exicyclog
[edit]
[-] vipw
[edit]
[-] vgexport
[edit]
[-] lvscan
[edit]
[-] xfs_rtcp
[edit]
[-] vgscan
[edit]
[-] selinuxenabled
[edit]
[-] dnssec-importkey
[edit]
[-] grubby
[edit]
[-] pvdisplay
[edit]
[-] g13-syshelp
[edit]
[-] exim
[edit]
[-] exim_checkaccess
[edit]
[-] rtmon
[edit]
[-] arping
[edit]
[-] csf
[edit]
[-] restorecon_xattr
[edit]
[-] lid
[edit]
[-] vgrename
[edit]
[-] fsadm
[edit]
[-] nfsidmap
[edit]
[-] getsebool
[edit]
[-] kpartx
[edit]
[-] cracklib-format
[edit]
[-] vgmknodes
[edit]
[-] realm
[edit]
[-] sssd
[edit]
[-] fuser
[edit]
[-] zic
[edit]
[-] fsck
[edit]
[-] grub2-set-bootflag
[edit]
[-] iptunnel
[edit]
[-] thin_check
[edit]
[-] plipconfig
[edit]
[-] runuser
[edit]
[-] ebtables
[edit]
[-] iprinit
[edit]
[-] vgimportclone
[edit]
[-] nvme
[edit]
[-] rpc.mountd
[edit]
[-] pvcreate
[edit]
[-] devlink
[edit]
[-] named-journalprint
[edit]
[-] badblocks
[edit]
[-] blkmapd
[edit]
[-] losetup
[edit]
[-] named-compilezone
[edit]
[-] mkfs.xfs
[edit]
[-] quotaoff
[edit]
[-] rmmod
[edit]
[-] xqmstats
[edit]
[-] hdparm
[edit]
[-] e4defrag
[edit]
[-] arptables
[edit]
[-] ipmaddr
[edit]
[-] mpathpersist
[edit]
[-] e2fsck
[edit]
[-] xfs_bmap
[edit]
[-] quotaon
[edit]
[-] cracklib-unpacker
[edit]
[-] lpasswd
[edit]
[-] vmcore-dmesg
[edit]
[-] mksquashfs
[edit]
[-] era_dump
[edit]
[-] pam_console_apply
[edit]
[-] xfsinvutil
[edit]
[-] pwck
[edit]
[-] dnssec-signzone
[edit]
[-] e2mmpstatus
[edit]
[-] arptables-restore
[edit]
[-] quotacheck
[edit]
[-] ip6tables-restore-translate
[edit]
[-] dhclient
[edit]
[-] poweroff
[edit]
[-] packer
[edit]
[-] named-nzd2nzf
[edit]
[-] mdmon
[edit]
[-] xfs_estimate
[edit]
[-] blkzone
[edit]
[-] consoletype
[edit]
[-] mdadm
[edit]
[-] capsh
[edit]
[-] whmlogin
[edit]
[-] fsck.fat
[edit]
[-] usermod
[edit]
[-] iptables-nft-restore
[edit]
[-] rcmysql
[edit]
[-] nfsstat
[edit]
[-] iscsi-iname
[edit]
[-] mii-diag
[edit]
[-] sendmail
[edit]
[-] rpc.nfsd
[edit]
[-] modinfo
[edit]
[-] sulogin
[edit]
[-] thin_metadata_pack
[edit]
[-] userdel
[edit]
[-] rsyslogd
[edit]
[-] nfsconf
[edit]
[-] biosdecode
[edit]
[-] sw-engine-fpm
[edit]
[-] pam_namespace_helper
[edit]
[-] rotatelogs
[edit]
[-] findfs
[edit]
[-] tc
[edit]
[-] rtstat
[edit]
[-] lvreduce
[edit]
[-] ifconfig
[edit]
[-] tuned
[edit]
[-] fix-info-dir
[edit]
[-] luseradd
[edit]
[-] lchage
[edit]
[-] sshd
[edit]
[-] exinext
[edit]
[-] ddns-confgen
[edit]
[-] exportfs
[edit]
[-] ip6tables-save
[edit]
[-] swapon
[edit]
[-] tcpslice
[edit]
[-] lvmpolld
[edit]
[-] getenforce
[edit]
[-] vgs
[edit]
[-] apachectl
[edit]
[-] addgnupghome
[edit]
[-] vgreduce
[edit]
[-] cfdisk
[edit]
[-] smartctl
[edit]
[-] nft
[edit]
[-] useradd
[edit]
[-] dmsetup
[edit]
[-] nstat
[edit]
[-] lnstat
[edit]
[-] mkhomedir_helper
[edit]
[-] sos-collector
[edit]
[-] irqbalance-ui
[edit]
[-] grub2-setpassword
[edit]
[-] getpidprevcon
[edit]
[-] cache_writeback
[edit]
[-] iscsiadm
[edit]
[-] insmod
[edit]
[-] mount.nfs
[edit]
[-] nfsiostat
[edit]
[-] pam_timestamp_check
[edit]
[-] switch_root
[edit]
[-] rpc.gssd
[edit]
[-] e2label
[edit]
[-] pure-quotacheck
[edit]
[-] load_policy
[edit]
[-] mpathcleanup
[edit]
[-] multipath
[edit]
[-] thin_trim
[edit]
[-] update-alternatives
[edit]
[-] vgcreate
[edit]
[-] exigrep
[edit]
[-] getcap
[edit]
[-] named
[edit]
[-] ether-wake
[edit]
[-] runlevel
[edit]
[-] iptables
[edit]
[-] aureport
[edit]
[-] pvmove
[edit]
[-] mkfs.fat
[edit]
[-] lvresize
[edit]
[-] arptables-nft-save
[edit]
[-] mcelog
[edit]
[-] cracklib-check
[edit]
[-] tipc
[edit]
[-] xfs_spaceman
[edit]
[-] xfs_metadump
[edit]
[-] start-stop-daemon
[edit]
[-] ip6tables-nft
[edit]
[-] iptables-save
[edit]
[-] fsck.ext3
[edit]
[-] umount.nfs4
[edit]
[-] dumpe2fs
[edit]
[-] chgpasswd
[edit]
[-] lshw
[edit]
[-] cache_repair
[edit]
[-] vgcfgrestore
[edit]
[-] exim_lock
[edit]
[-] mii-tool
[edit]
[-] weak-modules
[edit]
[-] xfs_copy
[edit]
[-] vpddecode
[edit]
[-] rndc
[edit]
[-] thin_rmap
[edit]
[-] ledctl
[edit]
[-] create-cracklib-dict
[edit]
[-] lvconvert
[edit]
[-] nsec3hash
[edit]
[-] wipefs
[edit]
[-] repquota
[edit]
[-] bridge
[edit]
[-] virt-what-cvm
[edit]
[-] mkfs.ext2
[edit]
[-] mtr
[edit]
[-] mkfs.vfat
[edit]
[-] chpasswd
[edit]
[-] rpcbind
[edit]
[-] dnssec-settime
[edit]
[-] ausearch
[edit]
[-] mkfs.ext3
[edit]
[-] exiwhat
[edit]
[-] virt-what
[edit]
[-] modprobe
[edit]
[-] dmstats
[edit]
[-] thin_metadata_size
[edit]
[-] dmfilemapd
[edit]
[-] sss_cache
[edit]
[-] agetty
[edit]
[-] auditctl
[edit]
[-] fixfiles
[edit]
[-] thin_delta
[edit]
[-] slattach
[edit]
[-] nfsref
[edit]
[-] fatlabel
[edit]
[-] saslpasswd2
[edit]
[-] debugfs
[edit]
[-] rfkill
[edit]
[-] iptables-nft-save
[edit]
[-] dnssec-cds
[edit]
[-] grub2-mkconfig
[edit]
[-] installkernel
[edit]
[-] setenforce
[edit]
[-] pure-certd
[edit]
[-] mkdosfs
[edit]
[-] httpd
[edit]
[-] pvremove
[edit]
[-] fsck.cramfs
[edit]
[-] lvrename
[edit]
[-] irqbalance
[edit]
[-] lvextend
[edit]
[-] htcacheclean
[edit]
[-] setfiles
[edit]