add a first custom version for the auracaster os

This commit is contained in:
2025-04-24 13:52:58 +02:00
parent b9e30f2e0e
commit 2e5c932f08
12 changed files with 259 additions and 4 deletions
+29
View File
@@ -0,0 +1,29 @@
#!/bin/bash
set -e
# Install Docker (official instructions for Raspberry Pi OS)
curl -fsSL https://download.docker.com/linux/raspbian/gpg | gpg --dearmor -o /usr/share/keyrings/docker-archive-keyring.gpg
echo \
"deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/docker-archive-keyring.gpg] https://download.docker.com/linux/raspbian \
$(lsb_release -cs) stable" | tee /etc/apt/sources.list.d/docker.list > /dev/null
apt-get update
apt-get install -y docker-ce docker-ce-cli containerd.io docker-compose-plugin
docker compose version || true
# Install Python Poetry (official installer)
curl -sSL https://install.python-poetry.org | python3 -
# Install WireGuard
apt-get install -y wireguard
# Disable WiFi (rfkill block and mask wpa_supplicant)
rfkill block wifi || true
systemctl mask wpa_supplicant.service || true
# Optionally, remove wpa_supplicant package
# apt-get remove -y wpa_supplicant
# Disable Bluetooth service
systemctl mask bluetooth.service || true
systemctl disable hciuart.service || true
+1
View File
@@ -0,0 +1 @@