11 lines
259 B
Bash
11 lines
259 B
Bash
|
#!/bin/bash
|
||
|
# -*- mode: sh; tab-width: 8; encoding: utf-8-unix -*-
|
||
|
|
||
|
PREFIX=/usr/local
|
||
|
ROLE=proxy
|
||
|
|
||
|
sh $PREFIX/bin/proxy_ping_test.bash wifi || exit 1
|
||
|
sh $PREFIX/bin/proxy_ping_test.bash tor || exit 2
|
||
|
|
||
|
exec $PREFIX/bin/python3.7.sh $PREFIX/bin/sdwdate_.py "$@"
|