Browse Source

Retire the mesh option from the freedombone-client command

This is no longer the way that the mesh system is intended to be used
Bob Mottram 7 years ago
parent
commit
44fcd44d39
2 changed files with 1 additions and 13 deletions
  1. BIN
      man/freedombone-client.1.gz
  2. 1
    13
      src/freedombone-client

BIN
man/freedombone-client.1.gz View File


+ 1
- 13
src/freedombone-client View File

36
 if [ -f /usr/bin/pacman ]; then
36
 if [ -f /usr/bin/pacman ]; then
37
     CURR_GROUP='users'
37
     CURR_GROUP='users'
38
 fi
38
 fi
39
-MESH_CLIENT_INSTALL=
40
 ENABLE_MONKEYSPHERE=
39
 ENABLE_MONKEYSPHERE=
41
 
40
 
42
 # setup for a specific app
41
 # setup for a specific app
211
 
210
 
212
 function show_help {
211
 function show_help {
213
     echo ''
212
     echo ''
214
-    echo $"${PROJECT_NAME}-client --mesh [yes|no] --monkeysphere [yes|no]"
213
+    echo $"${PROJECT_NAME}-client --monkeysphere [yes|no]"
215
     echo ''
214
     echo ''
216
     exit 0
215
     exit 0
217
 }
216
 }
319
             verify_ssh_server_key
318
             verify_ssh_server_key
320
             exit 0
319
             exit 0
321
             ;;
320
             ;;
322
-        -m|--mesh)
323
-            shift
324
-            MESH_CLIENT_INSTALL=${1}
325
-            ;;
326
         --monkeysphere|--ms|--monkey)
321
         --monkeysphere|--ms|--monkey)
327
             shift
322
             shift
328
             ENABLE_MONKEYSPHERE=${1}
323
             ENABLE_MONKEYSPHERE=${1}
342
 global_rate_limit
337
 global_rate_limit
343
 configure_monkeysphere
338
 configure_monkeysphere
344
 remove_known_hosts_entries
339
 remove_known_hosts_entries
345
-if [[ $MESH_CLIENT_INSTALL == $'yes' || $MESH_CLIENT_INSTALL == $'y' || $MESH_CLIENT_INSTALL == $'on' ]]; then
346
-    echo $'Installing mesh packages'
347
-    sudo ${PROJECT_NAME}-mesh-install -f tox_node
348
-    sudo ${PROJECT_NAME}-mesh-install -f toxic
349
-    ${PROJECT_NAME}-mesh-install -f qtox
350
-    sudo ${PROJECT_NAME}-mesh-install -f zeronet
351
-fi
352
 echo $'Configuration complete'
340
 echo $'Configuration complete'
353
 exit 0
341
 exit 0