template_setup/110-Cleanup.sh
deathbybandaid 8e2fd081a5 test
2023-12-17 11:27:15 -05:00

21 lines
711 B
Bash

#!/bin/bash
## Script Location
SCRIPTDIR=$(dirname $0)
source "$SCRIPTDIR/common/colors.sh"
source "$SCRIPTDIR/common/functions.sh"
source "$SCRIPTDIR/common/load-defaults.sh"
printf "$COL_LIGHT_BLUE" "* Cleaning up system"
prespace=$(echo get_system_used_space)
prespacewords=`human_readable_bytes $prespace`
printf "$COL_LIGHT_BLUE" "* Current used space is $prespacewords"
pkgmgr_clean
postspace=$(echo get_system_used_space)
postspacewords=`human_readable_bytes $prespace`
printf "$COL_LIGHT_BLUE" "* Current used space is now $postspacewords"
spacesavedbytes=`expr $postspace - $prespace`
postspacewords=`(human_readable_bytes $spacesavedbytes`
printf "$COL_LIGHT_BLUE" "Cleanup saved $spacesavedwords"