0316b0f755
- Switch to version 2 of the Azure Custom Script Extension - Use default VM size "Basic_A0" for deployments (configurable) - Clean up install.sh, and other minor improvements
8 lines
140 B
Bash
8 lines
140 B
Bash
#!/bin/sh
|
|
|
|
export VPN_IPSEC_PSK=$1
|
|
export VPN_USER=$2
|
|
export VPN_PASSWORD=$3
|
|
|
|
wget https://git.io/vpnsetup -O vpnsetup.sh && sh vpnsetup.sh
|