feat: Add Netbird VPN support and fix Tailscale auto-connect#43
Open
zgv163 wants to merge 2 commits intoopenclaw:mainfrom
Open
feat: Add Netbird VPN support and fix Tailscale auto-connect#43zgv163 wants to merge 2 commits intoopenclaw:mainfrom
zgv163 wants to merge 2 commits intoopenclaw:mainfrom
Conversation
Replace tailscale_enabled with vpn_provider variable supporting "tailscale", "netbird", or "" (disabled). Add Netbird installation tasks with auto-connect via setup key and optional self-hosted management URL. Fix the unused tailscale_authkey by implementing the auto-connect task with no_log for credential protection. Convert inline sudoers to a Jinja2 template with conditional VPN permissions based on the selected provider.
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: a538f634d3
ℹ️ About Codex in GitHub
Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".
On minimal Debian/Ubuntu hosts, gnupg is not preinstalled. The Netbird setup pipes the signing key through gpg --dearmor, which fails without it. Add a prerequisite package install step matching the Docker task pattern.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
vpn_providervariable ("tailscale","netbird", or"")tailscale_authkeyvariable was defined and documented but never used in any task. Now it auto-connects withno_log: truefor credential protectionnetbird_management_urlfor self-hosted instancesChanges
New files
roles/openclaw/tasks/netbird-linux.yml— Netbird installation, service setup, auto-connectroles/openclaw/templates/sudoers-openclaw.j2— Templated sudoers with conditional VPN permsModified files
roles/openclaw/defaults/main.yml— Newvpn_provider,netbird_setup_key,netbird_management_urlvariablesroles/openclaw/tasks/main.yml— VPN provider routingroles/openclaw/tasks/tailscale-linux.yml— Added auto-connect taskroles/openclaw/tasks/firewall-linux.yml— Added Netbird UDP 51820 ruleroles/openclaw/tasks/user.yml— Switched from inline copy to templateTest plan
ansible-playbook --syntax-checkpassesvpn_providerdefaults to"")