#!/bin/bash
+ARCH=$(dpkg --print-architecture);
cd;
if [ -x /usr/bin/git ]; then git clone https://git.morketsmerke.org/git/immudex-testing;
else apt install git -y && git clone https://git.morketsmerke.org/git/immudex-testing;
update_packages;
-if [ $(uname -m) = "x86_64" ]; then
+if [ $ARCH = "amd64" ]; then
install_packages --no-install-recommends linux-image-amd64 live-boot systemd-sysv -y;
else
install_packages --no-install-recommends linux-image-686-pae live-boot systemd-sysv -y;
install_packages firejail ufw cryptsetup lsof extlinux grub-efi-amd64 efibootmgr bash-completion etherwake wakeonlan cifs-utils wget figlet mpv yt-dlp vim-gtk3 redshift irssi nmap nfs-common remmina python3-pip ffmpeg debootstrap squashfs-tools xorriso syslinux-efi grub-pc-bin grub-efi-amd64-bin mtools dosfstools chrony python3-venv isolinux rsync mutt gimp openvpn netselect-apt gvfs-backends dnsutils xfce4-notes-plugin;
-if [ $(dpkg --print-architecture) = "amd64" ]; then
+if [ $ARCH = "amd64" ]; then
wget https://ftp.morketsmerke.org/immudex/testing/software/librewolf/librewolf-116.0.3-1.en-US.linux-x86_64.tar.bz2;
tar -xf librewolf-116.0.3-1.en-US.linux-x86_64.tar.bz2 -C /usr/lib;
rm librewolf-116.0.3-1.en-US.linux-x86_64.tar.bz2;