Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

### 2.0.1 - Fix service start

- Fixed command for starting service

### 2.0.0 - Partial rewrite

- Moved `/config/hooks` to `/config/openvpn/hooks`
Expand Down
2 changes: 1 addition & 1 deletion root/etc/services.d/openvpn/run
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ CONFIGS=$(ls -1 /config/openvpn/config | wc -l) # Get number of files
if [ $CONFIGS -gt 0 ]; then
# Run OpenVPN only if configs are present
echo "Running OpenVPN ..."
sudo -E -u abc openvpn --config /config/openvpn/system.conf
exec s6-setuidgid $CONTAINER_USER openvpn --config /config/openvpn/system.conf
else
# No OpenVPN config present
echo "No OpenVPN config present"
Expand Down