From 9962203c5b406f30ebbfce74c77ed8ce8a74cf2e Mon Sep 17 00:00:00 2001 From: Steve Clement Date: Thu, 12 Oct 2023 13:36:53 +0200 Subject: [PATCH 1/2] fix: [installer] Kali Linux hack --- docs/generic/supportFunctions.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/generic/supportFunctions.md b/docs/generic/supportFunctions.md index f823b2488..47ec78922 100644 --- a/docs/generic/supportFunctions.md +++ b/docs/generic/supportFunctions.md @@ -614,6 +614,14 @@ installRNG () { kaliUpgrade () { debug "Running various Kali upgrade tasks" checkAptLock + # Fix Missing keys early + sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg + # /!\ The following is a very ugly dependency hack to make php7.4 work on Kali + wget http://archive.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.1f-1ubuntu2_amd64.deb + sudo dpkg -i libssl1.1_1.1.1f-1ubuntu2_amd64.deb + wget http://ftp.debian.org/debian/pool/main/i/icu/libicu67_67.1-7_amd64.deb + sudo dpkg -i libicu67_67.1-7_amd64.deb + # EOH End-Of-Hack sudo DEBIAN_FRONTEND=noninteractive apt update sudo DEBIAN_FRONTEND=noninteractive apt install --only-upgrade bash libc6 -y sudo DEBIAN_FRONTEND=noninteractive apt autoremove -y From aee84704ce60e7c7099e2d33ceea7ac53ffb1351 Mon Sep 17 00:00:00 2001 From: Steve Clement Date: Thu, 12 Oct 2023 13:39:06 +0200 Subject: [PATCH 2/2] chg: [installer] Support Debian 12 --- INSTALL/INSTALL.tpl.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/INSTALL/INSTALL.tpl.sh b/INSTALL/INSTALL.tpl.sh index 0d237b3d1..3f3685880 100755 --- a/INSTALL/INSTALL.tpl.sh +++ b/INSTALL/INSTALL.tpl.sh @@ -844,6 +844,7 @@ x86_64-rhel-8 x86_64-fedora-33 x86_64-fedora-34 x86_64-fedora-35 +x86_64-debian-12 x86_64-debian-stretch x86_64-debian-buster x86_64-ubuntu-bionic