Adding mail syncing with home server

This commit is contained in:
Colin Powell
2019-07-20 14:06:16 -04:00
parent 209b2972a6
commit e2a62cb2a1
3 changed files with 32 additions and 0 deletions

View File

@ -0,0 +1,11 @@
#!/bin/sh
STATE=`nmcli networking connectivity`
if [ $STATE = 'full' ]
then
muchsync rhea.unbl.ink
exit 0
fi
echo "No internet connection"
exit 0