8 lines
94 B
Bash
Executable file
8 lines
94 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cat <<EOF > /etc/openvpn/fdn-pass.txt
|
|
${VPN_USERNAME}
|
|
${VPN_PASSWORD}
|
|
EOF
|
|
|
|
exec $@
|