From 0d6b9fcbc0a50570ade910628117f0e7684ca962 Mon Sep 17 00:00:00 2001 From: everest Date: Mon, 28 Mar 2022 21:09:56 +0000 Subject: [PATCH] Create glacier-cache-install.sh --- glacier-cache-install.sh | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 glacier-cache-install.sh diff --git a/glacier-cache-install.sh b/glacier-cache-install.sh new file mode 100644 index 0000000..bf410ca --- /dev/null +++ b/glacier-cache-install.sh @@ -0,0 +1,31 @@ +#!/bin/sh +# glacier-cache-install +# Script used to install cached 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 ] Checking cache for $input.tar.gz" +cd /var/cache/glacier && mv $input.tar.gz /tmp && cd /tmp +if [ "$?" != "0" ]; then + echo "[ X ] Could not fetch $input.tar.gz from cache." 1>&2 + exit 1 +fi +echo "[ i ] Unpacking $input.tar.gz..." +mkdir -v $input && mv -v $input.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 INSTALL.sh +./INSTALL.sh # Actually executes installation script +echo "[ i ] Cleaning up..." # Status message +mv -v $input-pkginfo.json /etc/glacier/pkginfo +cd .. +rm -rvf $input +echo "[ i ] Operation completed."