mirror of
https://github.com/balena-io/open-balena.git
synced 2025-06-01 23:30:55 +00:00
tidy: Remove unused DEVICE_CONFIG_OPENVPN_CONFIG variable
Change-type: patch Signed-off-by: Rich Bayliss <rich@balena.io>
This commit is contained in:
parent
6fdc554e43
commit
199d8eb4a4
@ -27,7 +27,6 @@ services:
|
|||||||
DB_PORT: 5432
|
DB_PORT: 5432
|
||||||
DB_USER: docker
|
DB_USER: docker
|
||||||
DELTA_HOST: delta.${OPENBALENA_HOST_NAME}
|
DELTA_HOST: delta.${OPENBALENA_HOST_NAME}
|
||||||
DEVICE_CONFIG_OPENVPN_CONFIG: ${OPENBALENA_VPN_CONFIG}
|
|
||||||
DEVICE_CONFIG_OPENVPN_CA: ${OPENBALENA_VPN_CA_CHAIN}
|
DEVICE_CONFIG_OPENVPN_CA: ${OPENBALENA_VPN_CA_CHAIN}
|
||||||
DEVICE_CONFIG_SSH_AUTHORIZED_KEYS: ${OPENBALENA_SSH_AUTHORIZED_KEYS}
|
DEVICE_CONFIG_SSH_AUTHORIZED_KEYS: ${OPENBALENA_SSH_AUTHORIZED_KEYS}
|
||||||
HOST: api.${OPENBALENA_HOST_NAME}
|
HOST: api.${OPENBALENA_HOST_NAME}
|
||||||
|
@ -40,35 +40,6 @@ b64file() {
|
|||||||
b64encode "$(cat "$@")"
|
b64encode "$(cat "$@")"
|
||||||
}
|
}
|
||||||
|
|
||||||
VPN_CONFIG=$(cat <<STR
|
|
||||||
client
|
|
||||||
remote vpn.$DOMAIN 443
|
|
||||||
resolv-retry infinite
|
|
||||||
|
|
||||||
remote-cert-tls server
|
|
||||||
ca /etc/openvpn/ca.crt
|
|
||||||
auth-user-pass /var/volatile/vpn-auth
|
|
||||||
auth-retry none
|
|
||||||
script-security 2
|
|
||||||
up /etc/openvpn-misc/upscript.sh
|
|
||||||
up-restart
|
|
||||||
down /etc/openvpn-misc/downscript.sh
|
|
||||||
|
|
||||||
comp-lzo
|
|
||||||
dev resin-vpn
|
|
||||||
dev-type tun
|
|
||||||
proto tcp
|
|
||||||
nobind
|
|
||||||
|
|
||||||
persist-key
|
|
||||||
persist-tun
|
|
||||||
verb 3
|
|
||||||
user openvpn
|
|
||||||
group openvpn
|
|
||||||
|
|
||||||
STR
|
|
||||||
)
|
|
||||||
|
|
||||||
cat <<STR
|
cat <<STR
|
||||||
export OPENBALENA_PRODUCTION_MODE=false
|
export OPENBALENA_PRODUCTION_MODE=false
|
||||||
export OPENBALENA_COOKIE_SESSION_SECRET=$(randstr 32)
|
export OPENBALENA_COOKIE_SESSION_SECRET=$(randstr 32)
|
||||||
@ -84,7 +55,6 @@ export OPENBALENA_TOKEN_AUTH_KEY=$(b64file "$JWT_KEY")
|
|||||||
export OPENBALENA_TOKEN_AUTH_KID=$(b64file "$JWT_KID")
|
export OPENBALENA_TOKEN_AUTH_KID=$(b64file "$JWT_KID")
|
||||||
export OPENBALENA_VPN_CA=$(b64file "$VPN_CA")
|
export OPENBALENA_VPN_CA=$(b64file "$VPN_CA")
|
||||||
export OPENBALENA_VPN_CA_CHAIN=$(b64file "$VPN_CA")
|
export OPENBALENA_VPN_CA_CHAIN=$(b64file "$VPN_CA")
|
||||||
export OPENBALENA_VPN_CONFIG=$(b64encode "$VPN_CONFIG")
|
|
||||||
export OPENBALENA_VPN_SERVER_CRT=$(b64file "$VPN_CRT")
|
export OPENBALENA_VPN_SERVER_CRT=$(b64file "$VPN_CRT")
|
||||||
export OPENBALENA_VPN_SERVER_KEY=$(b64file "$VPN_KEY")
|
export OPENBALENA_VPN_SERVER_KEY=$(b64file "$VPN_KEY")
|
||||||
export OPENBALENA_VPN_SERVER_DH=$(b64file "$VPN_DH")
|
export OPENBALENA_VPN_SERVER_DH=$(b64file "$VPN_DH")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user