Skip to content

Instantly share code, notes, and snippets.

@rrader
Created September 2, 2013 11:33
Show Gist options
  • Save rrader/6411920 to your computer and use it in GitHub Desktop.
Save rrader/6411920 to your computer and use it in GitHub Desktop.
Script for Cron to auto reconnect home VPN
#!/bin/bash
if ! nmcli con status id HomeVPN &>/dev/null; then
nmcli con up id HomeVPN
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment