32 lines
850 B
Bash
32 lines
850 B
Bash
#!/bin/sh
|
|
# glacier-remove
|
|
# Script used to uninstall packages
|
|
|
|
# Require the script to be run as root
|
|
if [[ $(/usr/bin/id -u) -ne 0 ]]; then
|
|
echo "[ X ] Please run Glacier as root."
|
|
exit
|
|
fi
|
|
|
|
echo "[ ? ] Enter package name:" && read input
|
|
echo "[ i ] Preparing to remove $input..."
|
|
wget https://github.com/everest-linux/glacier-pkgs/raw/main/pkgs/$input.tar.gz
|
|
if [ "$?" != "0" ]; then
|
|
echo "[ X ] Could not get archive for $input." 1>&2
|
|
exit 1
|
|
fi
|
|
echo "[ i ] Fetching removal instructions..."
|
|
mkdir -v $input && mv -v $inpit.tar.gz $input && cd $input
|
|
tar -xvf $input.tar.gz
|
|
if [ "$?" != "0" ]; then
|
|
echo "[ X ] Could not unpack $input.tar.gz" 1>&2
|
|
exit 1
|
|
fi
|
|
chmod +x REMOVE.sh
|
|
./REMOVE.sh
|
|
echo "[ i ] Cleaning up..."
|
|
cd ..
|
|
rm -rvf $input
|
|
rm /etc/glacier/pkginfo/$input-pkginfo.json
|
|
echo "[ i ] Operation completed."
|