From: xf0r3m Date: Tue, 14 May 2024 14:41:07 +0000 (+0200) Subject: Poprawienie addonów librewolf, lampstack oraz pliku bazowego X-Git-Url: https://gitweb.morketsmerke.org/?a=commitdiff_plain;h=53399ae650c0e755114e802e088ed083b658689c;p=immudex.git Poprawienie addonów librewolf, lampstack oraz pliku bazowego --- diff --git a/addons/lampstack b/addons/lampstack index 7ef6240..5cebb41 100644 --- a/addons/lampstack +++ b/addons/lampstack @@ -1,7 +1,7 @@ #!/bin/bash #Anti-Frankenstein policy - 13.05.2024 -if [ $DEBVER = "stable" ]; then +if [ "$DEBVER" = "stable" ]; then #baseVersion=$(head -1 /etc/apt/sources.list | awk '{print $3}') apt install lsb-release gnupg -y; diff --git a/addons/librewolf b/addons/librewolf index 369f693..bd73af7 100644 --- a/addons/librewolf +++ b/addons/librewolf @@ -2,7 +2,7 @@ set -e #Anti-Frankenstein policy - 13.05.2024 -if [ $DEBVER = "stable" ]; then +if [ "$DEBVER" = "stable" ]; then if [ "$(uname -m)" != "x86_64" ]; then echo "Other architectures than x86_64 (amd64) is not supported by this script"; diff --git a/versions/base.sh b/versions/base.sh index 03f0f62..d0e7a05 100644 --- a/versions/base.sh +++ b/versions/base.sh @@ -2,7 +2,7 @@ set -e -DEBVER="$1"; +export DEBVER="$1"; ARCH=$(dpkg --print-architecture); if [ $ARCH = "amd64" ]; then @@ -173,7 +173,6 @@ echo "root:${rootPassword}" | chpasswd; usermod -L root; # Miejsce na twoje zmiany, przed poleceniem 'tidy' - bash ~/immudex/addons/librewolf; bash ~/immudex/addons/ncspot; bash ~/immudex/addons/nushell;