blob: 8894c96602e108df0dce2ae2b0b47de9b0de6c90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
#!/bin/sh
MC_DESCRIPTION="OpenVPN configuration."
. "$(dirname "$(readlink -f "$0")")/common" || exit
inst conf /etc/openvpn/myvpn.conf
vpn_restart=$change
if [ "$(remote_source is_server)" = "y" ]; then
# TODO pull ccd directory
true
fi
apply ############################################################################
|