Skip to content

Instantly share code, notes, and snippets.

@alincc
Forked from unique1984/ovpn_autostart
Created March 15, 2020 13:58
Show Gist options
  • Save alincc/7a1ab045783e1ce744ea0ae53d91b201 to your computer and use it in GitHub Desktop.
Save alincc/7a1ab045783e1ce744ea0ae53d91b201 to your computer and use it in GitHub Desktop.
ovpn_autostart
#!/bin/sh
OVPNCONF="/root/ovpn/client.ovpn"
RUNNING=$(ps aux | grep -o "openvpn \-\-config" | wc -l)
case "$1" in
start)
if [ $RUNNING -eq 0 ]; then
echo -n > /var/log/ovpn_autostart.log
nohup openvpn --config "$OVPNCONF" > /var/log/ovpn_autostart.log 2>&1 &
else
$0 restart
fi
;;
stop)
if [ $RUNNING -eq 1 ]; then
pid=$(ps aux | grep "openvpn \-\-config" | awk '{print $2}')
kill -9 $pid
unset pid
echo -n > /var/log/ovpn_autostart.log
fi
;;
restart)
echo "$0"
$0 stop
sleep 1
$0 start
;;
reload|force-reload)
$0 restart
;;
status)
if [ $RUNNING -eq 0 ]; then
echo -e "Kapalı\n"
else
echo -e "Aktif\n"
fi
;;
*)
exit 1
esac
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment