29 lines
473 B
Bash
Executable file
29 lines
473 B
Bash
Executable file
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
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"
|
|
|
|
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!!!"
|