#!/usr/local/bin/bash
# put a file in place which enables boot at startup

# but find out if it is already there
if [ ! -f /home/tc/enable-vpn ];then
   touch /home/tc/enable-vpn
   # persist the change to /home/tc/enable-vpn
   filetool.sh -b
fi
cd /usr/local/etc/openvpn; openvpn xscenet.conf >/dev/null &

