Update UNINSTALL-GLACIER.sh

This commit is contained in:
everest 2022-04-05 13:49:32 +00:00 committed by GitHub
parent dbfa201253
commit 241e1f543e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -13,7 +13,7 @@ echo "[ ! ] ls /etc/glacier/pkginfo"
while true; do while true; do
read -p "[ ? ] Would you like to uninstall Glacier?" yn read -p "[ ? ] Would you like to uninstall Glacier?" yn
case $yn in case $yn in
[Yy]* ) rm -rf /etc/glacier && rm -rf /var/cache/glacier && rm /bin/glacier-install && rm /bin/glacier-update && rm /bin/glacier-remove && rm /bin/glacier-query && rm /bin/glacier-help; break;; [Yy]* ) rm -rf /etc/glacier && rm -rf /var/cache/glacier && rm -rf /var/log/glacier && rm /bin/glacier-install && rm /bin/glacier-update && rm /bin/glacier-remove && rm /bin/glacier-query && rm /bin/glacier-help; break;;
[Nn]* ) exit;; [Nn]* ) exit;;
* ) echo "[ ! ] You must answer either yes or no.";; * ) echo "[ ! ] You must answer either yes or no.";;
esac esac