File tree Expand file tree Collapse file tree 3 files changed +13
-1
lines changed
root/etc/services.d/openvpn Expand file tree Collapse file tree 3 files changed +13
-1
lines changed Original file line number Diff line number Diff line change 11# Changelog
22
3+ ### 2.0.6 - Fixed bugs, added additonal parameters
4+
5+ - Fixed bug in ` ovpn ` util.
6+ - Moved ` tmp-dir ` to server related config.
7+ - Fixed bug in dockumentation (GUID -> PGID).
8+ - Added ` SKIP_APP ` parameter (to skip app startup).
9+
310### 2.0.3 - Improved IPv6 support & finalized client mode support
411
512- Added some IPv6 settings to examples
Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ services:
7171| ` -e PUID=1000 ` | for UserID - see below for explanation|
7272| ` -e PGID=1000 ` | for GroupID - see below for explanation|
7373| ` -e PERSISTENT_INTERFACE=true ` | Enable persistent TUN interface|
74+ | ` -e SKIP_APP=true ` | Skip app startup|
7475| ` -e TUNNEL_INTERFACE="tun0" ` | Tunnel interface name (default: tun0)|
7576| ` -e USE_FIREWALL=false ` | Disable any firewall related rules to be created, modified ... (must be implemented in example)|
7677| ` -v /config ` | All the config files including OpenVPNs reside here|
Original file line number Diff line number Diff line change 11#!/usr/bin/with-contenv bash
22
3+ if [ -n "$SKIP_APP" ]; then
4+ exit 0
5+ fi
6+
37if [ ! -d "/config/openvpn" ] || [ ! -f "/config/openvpn/system.conf" ]; then
48 echo "System configuration is missing"
59 if [ "$FAIL_MODE" != "hard" ]; then
2832 done
2933 fi
3034 exit 1
31- fi
35+ fi
You can’t perform that action at this time.
0 commit comments