summaryrefslogtreecommitdiff
path: root/public/fs/etc/openvpn/hostvpn-conf.sh
blob: a438a54e0776007b85f55662c773e0907178d65c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/bin/sh

set -eu

sitezone="$1"

cfg_script="$0"
cfg_srcdir=$(cd -- "${cfg_script%/*}/" ; pwd -P)

source /root/config/private/config/server.ports
source /root/config/private/config/hostinfo/${sitezone}

sed -e 's/@vpn_port@/'${vpn_port}'/g'    \
	-e 's/@hostname@/'${hostname}'/g' \
	-e 's/@vpn_net4@/'${vpn_net4}'/g'  \
	-e 's/@vpn_ipv4@/'${vpn_ipv4}'/g'   \
	-e 's/@host_ipv4@/'${host_ipv4}'/g'  \
	-e 's/@host_ipv6@/'${host_ipv6}'/g'   \
	"${cfg_srcdir}/hostvpn.conf.in"