1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2025-07-10 15:27:39 +02:00

Exec raspi-config noint do_wifi_country

This commit is contained in:
billz 2025-02-09 00:46:27 -08:00
parent 33f66fdae5
commit c34cbeca8d

View File

@ -30,6 +30,9 @@ jobs:
#!/bin/bash
apt-get update -y && apt-get install -y curl dhcpcd5 iptables procps
curl -sL https://install.raspap.com | bash -s -- --yes --openvpn 1 --restapi 1 --adblock 1 --wireguard 1 --tcp-bbr 1 --check 0
# Set Wi-Fi country to prevent RF kill
raspi-config nonint do_wifi_country "US"
EOF
} &&
chmod +x stage-raspap/package-raspap/00-run-chroot.sh &&