mint-config-update.sh aktualisiert

This commit is contained in:
olli 2023-07-18 15:09:21 +02:00
parent 896c6de065
commit 1ef6af7127

View File

@ -1,8 +1,11 @@
#!/bin/bash #!/bin/bash
if whoami | grep -q ^root$
then
# lockfile for systemd-service # lockfile for systemd-service
trap "rm -f /run/mint-config-update.sh.lock" EXIT trap "rm -f /run/mint-config-update.sh.lock" EXIT
echo $$ >/run/mint-config-update.sh.lock echo $$ >/run/mint-config-update.sh.lock
fi
# download and run # download and run
wget -q https://gitea.ds9.dedyn.io/olli/linux-mint/raw/branch/main/mint.sh -O /tmp/mint.sh || exit 0 wget -q https://gitea.ds9.dedyn.io/olli/linux-mint/raw/branch/main/mint.sh -O /tmp/mint.sh || exit 0
@ -11,4 +14,5 @@ bash -n mint.sh && bash -x mint.sh
rm mint.sh rm mint.sh
echo "Skript beendet" echo "Skript beendet"
if whoami | grep -q ^root$ && exit 0
read x read x