diff options
Diffstat (limited to 'lib')
-rwxr-xr-x | lib/_ak_network | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/lib/_ak_network b/lib/_ak_network index 62f410f..5d2900c 100755 --- a/lib/_ak_network +++ b/lib/_ak_network @@ -135,14 +135,16 @@ _ak_network_scan_cjdns_dump(){ which dumpLinks > /dev/null 2>&1 if [ $? -ne 0 ] then - echo "You need to install cjdns and cjdns-tools" - exit 1 + echo "You need to install cjdns and cjdns-tools ... falling back to -w" + _ak_network_scan_cjdns_full + exit 0 fi which publictoip6 > /dev/null 2>&1 if [ $? -ne 0 ] then - echo "You need to install cjdns and cjdns-tools" - exit 1 + echo "You need to install cjdns and cjdns-tools ... falling back to -w" + _ak_network_scan_cjdns_full + exit 0 fi TEMPDIR="$(_ak_make_temp_directory)" AK_ZPEERSFILE="$HOME/.arching-kaos/peersFile" |