Skip to content
Snippets Groups Projects
Commit 44fcd44d authored by Bob Mottram's avatar Bob Mottram
Browse files

Retire the mesh option from the freedombone-client command

This is no longer the way that the mesh system is intended to be used
parent 1297c3db
No related branches found
No related tags found
No related merge requests found
No preview for this file type
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment