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 1
1
# Changelog
2
2
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
+
3
10
### 2.0.3 - Improved IPv6 support & finalized client mode support
4
11
5
12
- Added some IPv6 settings to examples
Original file line number Diff line number Diff line change @@ -71,6 +71,7 @@ services:
71
71
| ` -e PUID=1000 ` | for UserID - see below for explanation|
72
72
| ` -e PGID=1000 ` | for GroupID - see below for explanation|
73
73
| ` -e PERSISTENT_INTERFACE=true ` | Enable persistent TUN interface|
74
+ | ` -e SKIP_APP=true ` | Skip app startup|
74
75
| ` -e TUNNEL_INTERFACE="tun0" ` | Tunnel interface name (default: tun0)|
75
76
| ` -e USE_FIREWALL=false ` | Disable any firewall related rules to be created, modified ... (must be implemented in example)|
76
77
| ` -v /config ` | All the config files including OpenVPNs reside here|
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/with-contenv bash
2
2
3
+ if [ -n "$SKIP_APP" ]; then
4
+ exit 0
5
+ fi
6
+
3
7
if [ ! -d "/config/openvpn" ] || [ ! -f "/config/openvpn/system.conf" ]; then
4
8
echo "System configuration is missing"
5
9
if [ "$FAIL_MODE" != "hard" ]; then
28
32
done
29
33
fi
30
34
exit 1
31
- fi
35
+ fi
You can’t perform that action at this time.
0 commit comments