diff --git a/man/freedombone-client.1.gz b/man/freedombone-client.1.gz index 44476776..401a425d 100644 Binary files a/man/freedombone-client.1.gz and b/man/freedombone-client.1.gz differ diff --git a/src/freedombone-client b/src/freedombone-client index d8783890..29463bdf 100755 --- a/src/freedombone-client +++ b/src/freedombone-client @@ -36,7 +36,6 @@ CURR_GROUP=$USER if [ -f /usr/bin/pacman ]; then CURR_GROUP='users' fi -MESH_CLIENT_INSTALL= ENABLE_MONKEYSPHERE= # setup for a specific app @@ -211,7 +210,7 @@ function configure_monkeysphere { function show_help { echo '' - echo $"${PROJECT_NAME}-client --mesh [yes|no] --monkeysphere [yes|no]" + echo $"${PROJECT_NAME}-client --monkeysphere [yes|no]" echo '' exit 0 } @@ -319,10 +318,6 @@ do verify_ssh_server_key exit 0 ;; - -m|--mesh) - shift - MESH_CLIENT_INSTALL=${1} - ;; --monkeysphere|--ms|--monkey) shift ENABLE_MONKEYSPHERE=${1} @@ -342,12 +337,5 @@ configure_ssh_client global_rate_limit configure_monkeysphere remove_known_hosts_entries -if [[ $MESH_CLIENT_INSTALL == $'yes' || $MESH_CLIENT_INSTALL == $'y' || $MESH_CLIENT_INSTALL == $'on' ]]; then - echo $'Installing mesh packages' - sudo ${PROJECT_NAME}-mesh-install -f tox_node - sudo ${PROJECT_NAME}-mesh-install -f toxic - ${PROJECT_NAME}-mesh-install -f qtox - sudo ${PROJECT_NAME}-mesh-install -f zeronet -fi echo $'Configuration complete' exit 0