Linux cpanel.rrshost.in 5.15.0-25-generic #25-Ubuntu SMP Wed Mar 30 15:54:22 UTC 2022 x86_64
Apache
: 109.123.238.221 | : 172.69.130.122
128 Domain
8.2.28
aev999
Terminal
AUTO ROOT
Adminer
Backdoor Destroyer
Linux Exploit
Lock Shell
Lock File
Create User
CREATE RDP
PHP Mailer
BACKCONNECT
HASH IDENTIFIER
README
+ Create Folder
+ Create File
/
usr /
share /
quota /
[ HOME SHELL ]
Name
Size
Permission
Action
ldap
[ DIR ]
drwxr-xr-x
quota-initial-check.sh
675
B
-rwxr-xr-x
quotaoff.sh
294
B
-rwxr-xr-x
quotaon.sh
2.72
KB
-rwxr-xr-x
quotarpc.sh
1012
B
-rwxr-xr-x
Delete
Unzip
Zip
${this.title}
Close
Code Editor : quota-initial-check.sh
#!/bin/sh # names of binaries check=/sbin/quotacheck on=/sbin/quotaon quotaisnew=/var/lib/quota/new ALLFLAGS=-aug CHECKALLFLAGS=${ALLFLAGS}m set -e . /lib/lsb/init-functions # Check if quota has been enabled already LC_MESSAGES=C $on -ap|grep -q "is on" && exit 0 # option 'skip' takes precedence even for newly installed quota package skip="no" if grep "quotacheck.mode=skip" /proc/cmdline >/dev/null 2>&1; then skip="yes" fi # Check all filesystems if quota is new if [ -x $check -a $skip = "no" -a -f $quotaisnew ] ; then log_action_begin_msg 'Checking quotas'; $check -c $CHECKALLFLAGS log_action_end_msg 0 fi # Remove special file rm -f $quotaisnew exit 0
Close