You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
		
			
				
					
					
						
							60 lines
						
					
					
						
							1.7 KiB
						
					
					
				
			
		
		
	
	
							60 lines
						
					
					
						
							1.7 KiB
						
					
					
				#!/bin/bash
 | 
						|
# info: update user disk quota
 | 
						|
# options: USER
 | 
						|
#
 | 
						|
# example: v-update-user-quota alice
 | 
						|
#
 | 
						|
# The functions upates disk quota for specific user
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                Variables & Functions                     #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Argument definition
 | 
						|
user=$1
 | 
						|
 | 
						|
# Includes
 | 
						|
# shellcheck source=/etc/hestiacp/hestia.conf
 | 
						|
source /etc/hestiacp/hestia.conf
 | 
						|
# shellcheck source=/usr/local/hestia/func/main.sh
 | 
						|
source $HESTIA/func/main.sh
 | 
						|
# load config file
 | 
						|
source_conf "$HESTIA/conf/hestia.conf"
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                    Verifications                         #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
check_args '1' "$#" 'USER'
 | 
						|
is_format_valid 'user'
 | 
						|
is_object_valid 'user' 'USER' "$user"
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Action                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Update disk quota
 | 
						|
# Hard quota quals package value. Soft quota equals 90% of package value.
 | 
						|
quota=$(get_user_value '$DISK_QUOTA')
 | 
						|
soft=$(echo "$quota * 1024" | bc | cut -f 1 -d .)
 | 
						|
hard=$(echo "$quota * 1024" | bc | cut -f 1 -d .)
 | 
						|
 | 
						|
# Searching home mount point
 | 
						|
mnt=$(df -P /home | awk '{print $6}' | tail -n1)
 | 
						|
 | 
						|
# Checking unlimited quota
 | 
						|
if [ "$quota" = 'unlimited' ]; then
 | 
						|
	setquota $user 0 0 0 0 $mnt 2> /dev/null
 | 
						|
else
 | 
						|
	setquota $user $soft $hard 0 0 $mnt 2> /dev/null
 | 
						|
fi
 | 
						|
 | 
						|
#----------------------------------------------------------#
 | 
						|
#                       Hestia                             #
 | 
						|
#----------------------------------------------------------#
 | 
						|
 | 
						|
# Logging
 | 
						|
log_event "$OK" "$ARGUMENTS"
 | 
						|
 | 
						|
exit
 |