Server IP : 85.214.239.14 / Your IP : 18.222.110.69 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /proc/3/root/usr/share/quota/ |
Upload File : |
#!/bin/sh # names of binaries check=/sbin/quotacheck on=/sbin/quotaon quotaisoff=/var/lib/quota/off quotaisnew=/var/lib/quota/new forcequotacheck=/forcequotacheck ALLFLAGS=-aug CHECKALLFLAGS=${ALLFLAGS}m CHECKUSERFLAGS=-ucm CHECKGROUPFLAGS=-gcm set -e . /lib/lsb/init-functions # create list of all fs with quota scan_fstab() { tmplist=`grep "^[ ]*[^#].*$1" /etc/fstab | \ sed -e 's/\(^[[:space:]]*[^[:space:]]*[[:space:]]*[^[:space:]]*[[:space:]]*[^[:space:]]*\).*/\1/g' \ -e 's/^[[:space:]]*[^[:space:]]*[[:space:]]*//g'` list=${tmplist:=empty} } # if fs needs a quotacheck, check it check_quota() { if [ "$2" != "xfs" ] then if [ ! -e $1/quota.user -a ! -e $1/aquota.user ] ; then log_warning_msg "Warning: user quota not configured in filesystem \`$1.'" elif [ "$4" != "journaled" -a ! -f $quotaisoff ] ; then # quota was not shut down correctly, check filesystem $check $3 $1 elif test ! -e $1/aquota.user; then # filesystem is new, check it test ! -s $1/quota.user && $check $3 $1 elif test ! -s $1/aquota.user; then # filesystem is new, check it $check $3 $1 fi fi } # Check if quota has been enabled already LC_MESSAGES=C $on -ap|grep -q "is off" || exit 0 # Did we get a quota option on boot? force="no" if [ -f $forcequotacheck ]; then log_warning_msg "Warning: Please pass 'quotacheck.mode=force' on the kernel command line rather than creating /forcequotacheck on the root file system." force="yes" elif grep "quotacheck.mode=force" /proc/cmdline >/dev/null 2>&1; then force="yes" fi skip="no" if grep "quotacheck.mode=skip" /proc/cmdline >/dev/null 2>&1; then skip="yes" fi if [ -x $check -a $skip = "no" ] ; then log_action_begin_msg 'Checking quotas'; # Check all filesystems if quota is new if [ -f $quotaisnew -o $force = "yes" ] ; then $check $CHECKALLFLAGS || $check -c $CHECKALLFLAGS log_action_end_msg 0 else # check filesystems that seem to need a check scan_fstab "usrquota" set -- $list while [ $# -ge 2 ] do check_quota "$1" "$2" "$CHECKUSERFLAGS" "normal" shift; shift done scan_fstab "grpquota" set -- $list while [ $# -ge 2 ] do check_quota "$1" "$2" "$CHECKGROUPFLAGS" "normal" shift; shift done scan_fstab "usrjquota" set -- $list while [ $# -ge 2 ] do check_quota "$1" "$2" "$CHECKUSERFLAGS" "journaled" shift; shift done scan_fstab "grpjquota" set -- $list while [ $# -ge 2 ] do check_quota "$1" "$2" "$CHECKGROUPFLAGS" "journaled" shift; shift done log_action_end_msg 0 fi fi # Remove special files rm -f $quotaisoff $quotaisnew $forcequotacheck # Turn quotas on. if [ -x $on ] ; then log_action_begin_msg 'Turning on quotas'; $on $ALLFLAGS log_action_end_msg 0 fi exit 0