add a first custom version for the auracaster os
This commit is contained in:
@@ -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
|
||||
@@ -0,0 +1 @@
|
||||
|
||||
Reference in New Issue
Block a user