mirror of
https://github.com/RaspAP/raspap-webgui.git
synced 2024-11-22 07:30:23 +00:00
fix: enable all flags and install missing packages
This commit is contained in:
parent
90794c8828
commit
8ae468376f
1 changed files with 4 additions and 4 deletions
8
.github/workflows/release.yml
vendored
8
.github/workflows/release.yml
vendored
|
@ -26,13 +26,13 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
mkdir -p custom_stage_raspap/package-raspap &&
|
mkdir -p custom_stage_raspap/package-raspap &&
|
||||||
{
|
{
|
||||||
cat > custom_stage_raspap/package-raspap/00-run-chroot.sh <<-EOF
|
cat > custom_stage_raspap/package-raspap/00-run.sh <<-EOF
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
apt-get update -y && apt-get install -y curl
|
apt-get update -y && apt-get install -y curl iptables procps
|
||||||
curl -sL https://install.raspap.com | bash -s -- --yes --openvpn 0 --restapi 0 --adblock 0 --wireguard 0 --tcp-bbr 0
|
curl -sL https://install.raspap.com | bash -s -- --yes --openvpn 1 --restapi 1 --adblock 1 --wireguard 1 --tcp-bbr 1
|
||||||
EOF
|
EOF
|
||||||
} &&
|
} &&
|
||||||
chmod +x custom_stage_raspap/package-raspap/00-run-chroot.sh &&
|
chmod +x custom_stage_raspap/package-raspap/00-run.sh &&
|
||||||
{
|
{
|
||||||
cat > custom_stage_raspap/prerun.sh <<-EOF
|
cat > custom_stage_raspap/prerun.sh <<-EOF
|
||||||
#!/bin/bash -e
|
#!/bin/bash -e
|
||||||
|
|
Loading…
Reference in a new issue