Skip to content

Commit

Permalink
Merge pull request MISP#9327 from SteveClement/guides
Browse files Browse the repository at this point in the history
chg: [installer] Support Debian 12
  • Loading branch information
SteveClement authored Oct 12, 2023
2 parents d72fbb7 + aee8470 commit 764157f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions INSTALL/INSTALL.tpl.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 8 additions & 0 deletions docs/generic/supportFunctions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 764157f

Please sign in to comment.