3 lines
94 B
Bash
3 lines
94 B
Bash
#!/bin/sh
|
|
CONFFILE="/etc/openvpn/server.conf"
|
|
exec /usr/bin/openvpn --config "$CONFFILE" 2>&1
|