archboot/usr/bin/archboot-not-installed.sh
2023-03-12 07:26:26 +01:00

21 lines
666 B
Bash
Executable file

#!/usr/bin/env bash
# SPDX-License-Identifier: GPL-2.0-only
# created by Tobias Powalowski <tpowa@archlinux.org>
if [[ ! "$(cat /etc/hostname)" == "archboot" ]]; then
echo "This script should only be run in booted archboot environment. Aborting..."
exit 1
fi
rm -r /usr/share/licenses
pacman -Sy
pacman -Q | cut -d ' ' -f1 >packages.txt
for i in $(cat packages.txt); do
rm -r /var/lib/pacman/local/${i}*
#shellcheck disable=SC2086
if pacman -S ${i} --noconfirm &>>log.txt; then
echo "${i}" >> uninstalled.txt
else
#shellcheck disable=SC2086
pacman -S ${i} --noconfirm --overwrite '*'
fi
done
# vim: set ft=sh ts=4 sw=4 et: