SpectreOS-old/update-packages

30 lines
473 B
Text
Raw Normal View History

2018-08-22 00:33:30 +02:00
#!/bin/bash
set -ex
2018-08-22 00:39:11 +02:00
if [[ $EUID -ne 0 ]]; then
echo "This script must be run as root" 1>&2
sudo $0 $1 $2 $3 $4 $5 $6 $7 $8 $9
exit 0
fi
echo "Als root Angemeldet"
2018-08-22 00:33:30 +02:00
repo=SpectreOS
repo1=shell-scripte
cd /opt/${repo}
git reset --hard
git pull
function standartinstallation() {
pacman -Syu $(cat /opt/${repo}/packages_${version}.txt) --needed --noconfirm --ignore linux
}
standartinstallation
cd /opt/${repo1}
git reset --hard
git pull
echo "Fertig!!!"