1
0
mirror of https://github.com/billz/raspap-webgui.git synced 2025-07-11 00:47:40 +02:00

Merge pull request #1753 from RaspAP/maint/release-check-flag

Specify --check 0 to skip connectivity check
This commit is contained in:
Bill Zimmerman 2025-02-08 13:02:01 +01:00 committed by GitHub
commit 74b1b10e31
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -29,7 +29,7 @@ jobs:
cat > stage-raspap/package-raspap/00-run-chroot.sh <<-EOF
#!/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
curl -sL https://install.raspap.com | bash -s -- --yes --openvpn 1 --restapi 1 --adblock 1 --wireguard 1 --tcp-bbr 1 --check 0
EOF
} &&
chmod +x stage-raspap/package-raspap/00-run-chroot.sh &&