mirror of
https://expo.survex.com/repositories/expoweb/.git/
synced 2024-11-25 00:32:01 +00:00
10 lines
133 B
Plaintext
10 lines
133 B
Plaintext
|
#!/bin/sh
|
||
|
# Runs from cron
|
||
|
|
||
|
if ( ping -c 1 -w 5 -q wookware.org ); then
|
||
|
#working
|
||
|
:
|
||
|
else
|
||
|
#rerun login
|
||
|
/root/fakenet/runfakenet
|
||
|
fi
|