#!/bin/sh /etc/rc.common

start(){
	/etc/openvpn/startopenvpn up &
}
stop(){
	killall openvpn
	killall /etc/openvpn/startopenvpn
}
