mirror of
https://github.com/tteck/Proxmox.git
synced 2024-11-22 08:13:11 +01:00
Update clean.sh
code refactoring
This commit is contained in:
parent
14390c0e9e
commit
975bce31ba
@ -27,17 +27,11 @@ if [[ -z "$cache" ]]; then
|
||||
echo -e "It appears there are no cached files on your system. \n"
|
||||
sleep 2
|
||||
else
|
||||
echo -e "$cache \n"
|
||||
echo -e "${GN}Cache in $name${CL}"
|
||||
read -p "Would you like to remove the selected cache listed above? [y/N] " -n 1 -r
|
||||
echo
|
||||
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
||||
echo "Removing cache"
|
||||
echo "Removing Cache"
|
||||
find /var/cache -type f -delete
|
||||
echo "Successfully Removed cache"
|
||||
echo "Successfully Removed Cache"
|
||||
sleep 2
|
||||
fi
|
||||
fi
|
||||
header_info
|
||||
echo -e "${BL}[Info]${GN} Cleaning $name${CL} \n"
|
||||
logs=$(find /var/log/ -type f)
|
||||
@ -45,17 +39,11 @@ if [[ -z "$logs" ]]; then
|
||||
echo -e "It appears there are no logs on your system. \n"
|
||||
sleep 2
|
||||
else
|
||||
echo -e "$logs \n"
|
||||
echo -e "${GN}Logs in $name${CL}"
|
||||
read -p "Would you like to remove the selected logs listed above? [y/N] " -n 1 -r
|
||||
echo
|
||||
if [[ $REPLY =~ ^[Yy]$ ]]; then
|
||||
echo "Removing logs"
|
||||
echo "Removing Logs"
|
||||
find /var/log -type f -delete
|
||||
echo "Successfully Removed logs"
|
||||
echo "Successfully Removed Logs"
|
||||
sleep 2
|
||||
fi
|
||||
fi
|
||||
header_info
|
||||
echo -e "${BL}[Info]${GN} Cleaning $name${CL} \n"
|
||||
echo -e "${GN}Populating apt lists${CL} \n"
|
||||
|
Loading…
Reference in New Issue
Block a user