Skip to content

Commit

Permalink
fix: enable all flags and install missing packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Dhanus3133 committed Nov 2, 2024
1 parent 90794c8 commit 8ae4683
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,13 @@ jobs:
run: |
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
apt-get update -y && apt-get install -y curl
curl -sL https://install.raspap.com | bash -s -- --yes --openvpn 0 --restapi 0 --adblock 0 --wireguard 0 --tcp-bbr 0
apt-get update -y && apt-get install -y curl iptables procps
curl -sL https://install.raspap.com | bash -s -- --yes --openvpn 1 --restapi 1 --adblock 1 --wireguard 1 --tcp-bbr 1
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
#!/bin/bash -e
Expand Down

1 comment on commit 8ae4683

@billz
Copy link
Member

@billz billz commented on 8ae4683 Nov 3, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The latest build is missing the packages installed by RaspAP and the application itself. You can verify this by ssh'ing in and checking the status of these services:

$ sudo systemctl status dhcpcd.service
$ sudo systemctl status hostapd.service
$ sudo systemctl status dnsmasq.service
$ sudo systemctl status lighttpd.service

And by verifying the default application install location:

$ ls -la /var/www/html

Perhaps related to the change from 00-run-chroot.sh to 00-run.sh ?
Also, given that this workflow targets Debian 12 (bookworm) you might also try manually installing the dhcpcd5 package.

Please sign in to comment.