mirror of https://github.com/tteck/Proxmox.git
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"
|
echo -e "It appears there are no cached files on your system. \n"
|
||||||
sleep 2
|
sleep 2
|
||||||
else
|
else
|
||||||
echo -e "$cache \n"
|
echo "Removing Cache"
|
||||||
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"
|
|
||||||
find /var/cache -type f -delete
|
find /var/cache -type f -delete
|
||||||
echo "Successfully Removed cache"
|
echo "Successfully Removed Cache"
|
||||||
sleep 2
|
sleep 2
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
header_info
|
header_info
|
||||||
echo -e "${BL}[Info]${GN} Cleaning $name${CL} \n"
|
echo -e "${BL}[Info]${GN} Cleaning $name${CL} \n"
|
||||||
logs=$(find /var/log/ -type f)
|
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"
|
echo -e "It appears there are no logs on your system. \n"
|
||||||
sleep 2
|
sleep 2
|
||||||
else
|
else
|
||||||
echo -e "$logs \n"
|
echo "Removing Logs"
|
||||||
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"
|
|
||||||
find /var/log -type f -delete
|
find /var/log -type f -delete
|
||||||
echo "Successfully Removed logs"
|
echo "Successfully Removed Logs"
|
||||||
sleep 2
|
sleep 2
|
||||||
fi
|
fi
|
||||||
fi
|
|
||||||
header_info
|
header_info
|
||||||
echo -e "${BL}[Info]${GN} Cleaning $name${CL} \n"
|
echo -e "${BL}[Info]${GN} Cleaning $name${CL} \n"
|
||||||
echo -e "${GN}Populating apt lists${CL} \n"
|
echo -e "${GN}Populating apt lists${CL} \n"
|
||||||
|
|
Loading…
Reference in New Issue