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

Patch1 #14

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
1 change: 1 addition & 0 deletions get_wireguard.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ function vyatta_cfg_teardown() {
if [ "$(id -g -n)" != 'vyattacfg' ] ; then
# Replace current shell with this script running as group 'vyattacfg' with
# identical bash options and parameters
echo switching group to vyattacfg...
exec sg vyattacfg -c "$(which bash) -$- $(readlink -f $0) $*"
fi

Expand Down
4 changes: 3 additions & 1 deletion uninstall_wireguard.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,10 @@ function add_to_path() {
}

if [ "$(id -g -n)" != 'vyattacfg' ] ; then
die "Unable to continue running script without 'vyattacfg' group permission."
echo switching group to vyattacfg...
exec sg vyattacfg -c "$(which bash) -$- $(readlink -f $0) $*"
fi

[[ $EUID -ne 0 ]] && SUDO='sudo'
add_to_path /sbin /usr/sbin

Expand Down