-
-
Notifications
You must be signed in to change notification settings - Fork 540
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Restart netbird-ui post-install in linux deb&rpm
- Loading branch information
1 parent
713e320
commit a0813ab
Showing
2 changed files
with
14 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/bin/sh | ||
|
||
# Check if netbird-ui is running | ||
if pgrep -x -f /usr/bin/netbird-ui >/dev/null 2>&1; | ||
then | ||
runner=$(ps --no-headers -o '%U' -p $(pgrep -x -f /usr/bin/netbird-ui)) | ||
# Only re-run if it was already running | ||
pkill -x -f /usr/bin/netbird-ui >/dev/null 2>&1 | ||
runuser -u "$runner" nohup /usr/bin/netbird-ui > /dev/null 2>&1 & | ||
fi |