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