Update glacier-update.sh

This commit is contained in:
everest 2022-04-08 16:02:42 +00:00 committed by GitHub
parent bac21d1925
commit 3fc83bc766
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -15,6 +15,7 @@ if [ "$?" != "0" ]; then
echo "[ X ] Could not get archive for $input." 1>&2 echo "[ X ] Could not get archive for $input." 1>&2
exit 1 exit 1
fi fi
rm /var/log/glacier/$input.timestamp
echo "[ i ] Unpacking $input,tar.gz..." echo "[ i ] Unpacking $input,tar.gz..."
mkdir -v $input && mv -v $input.tar.gz $input && cd $input mkdir -v $input && mv -v $input.tar.gz $input && cd $input
tar -xvf $input.tar.gz tar -xvf $input.tar.gz
@ -28,6 +29,7 @@ chmod +x $input.ts.sh
./$input.ts.sh ./$input.ts.sh
echo "[ i ] Cleaning up..." echo "[ i ] Cleaning up..."
mv -v $input-pkginfo.json /etc/glacier/pkginfo mv -v $input-pkginfo.json /etc/glacier/pkginfo
mv $input.timestamp /var/log/glacier
cd .. cd ..
rm -rvf $input rm -rvf $input
echo "[ i ] Operation completed." echo "[ i ] Operation completed."