Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add Synology script and iOS install #216

Merged
merged 3 commits into from
Aug 13, 2024
Merged

Conversation

pascal-fischer
Copy link
Collaborator

Screenshot 2024-08-13 at 14 33 22 Screenshot 2024-08-13 at 14 33 28

#!/bin/sh

# Create the necessary file structure for /dev/net/tun
if ( [ ! -c /dev/net/tun ] ); then
Copy link
Contributor

Choose a reason for hiding this comment

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

( ) does not need to


# Create the necessary file structure for /dev/net/tun
if ( [ ! -c /dev/net/tun ] ); then
if ( [ ! -d /dev/net ] ); then
Copy link
Contributor

Choose a reason for hiding this comment

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

( ) does not need to

fi

# Load the tun module if not already loaded
if ( !(lsmod | grep -q "^tun\s") ); then
Copy link
Contributor

Choose a reason for hiding this comment

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

( ) does not need to

@@ -182,6 +182,26 @@ brew unlink netbird
curl -fsSL https://pkgs.netbird.io/install.sh | sh
```

For NetBird to work on Synology after a reboot, you need to run this script every time you reboot your NAS. To automate this process, you can create a scheduled task in the Synology DSM.
```bash
Copy link
Contributor

Choose a reason for hiding this comment

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

It is not a bash script, it is sh script

@pascal-fischer pascal-fischer merged commit 9355a61 into main Aug 13, 2024
1 check passed
@pascal-fischer pascal-fischer deleted the fix/update-install-docs branch August 13, 2024 13:45
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants