Update fstrim.sh

display the data percentage used before and after trimming
This commit is contained in:
tteckster 2024-02-17 13:08:07 -05:00 committed by GitHub
parent 8ce0ad13ab
commit c7cf925187
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 5 additions and 1 deletions

View File

@ -47,8 +47,12 @@ function trim_container() {
local name=$(pct exec "$container" hostname)
header_info
echo -e "${BL}[Info]${GN} Trimming ${name} ${CL} \n"
local before_trim=$(lvs | awk -F '[[:space:]]+' 'NR>1 && (/Data%|'"$container"'/) {gsub(/%/, "", $7); print $7}')
echo -e "${RD}Data before trim $before_trim%${CL}"
pct fstrim $container
sleep 1
local after_trim=$(lvs | awk -F '[[:space:]]+' 'NR>1 && (/Data%|'"$container"'/) {gsub(/%/, "", $7); print $7}')
echo -e "${GN}Data after trim $after_trim%${CL}"
sleep 1.5
}
for container in $(pct list | awk '{if(NR>1) print $1}'); do