diff --git a/src/freedombone-client b/src/freedombone-client index 7a7ee98c..d7b3e229 100755 --- a/src/freedombone-client +++ b/src/freedombone-client @@ -191,6 +191,9 @@ configure_ssh_client configure_monkeysphere if [[ $MESH_CLIENT_INSTALL == $'yes' || $MESH_CLIENT_INSTALL == $'y' || $MESH_CLIENT_INSTALL == $'on' ]]; then echo $'Installing mesh packages' + ${PROJECT_NAME}-mesh-install -f mesh_tox_node + ${PROJECT_NAME}-mesh-install -f mesh_tox_client + ${PROJECT_NAME}-mesh-install -f qtox ${PROJECT_NAME}-mesh-install -f batman_client fi echo $'Configuration complete' diff --git a/src/freedombone-mesh-install b/src/freedombone-mesh-install index a7ce0e85..790c294e 100755 --- a/src/freedombone-mesh-install +++ b/src/freedombone-mesh-install @@ -620,6 +620,16 @@ function mesh_tox_client { fi } +function mesh_tox_client_qtox { + sudo sh -c 'echo "deb https://pkg.tox.chat/debian/ nightly release" > /etc/apt/sources.list.d/tox.list' + wget -qO - https://pkg.tox.chat/debian/pkg.gpg.key | sudo apt-key add -
 + sudo apt-get -y install apt-transport-https + sudo apt-get -y update -qq + echo "qTox Repository Installed." + sudo apt-get -y install qtox + echo "qTox Installed." +} + function mesh_zeronet { # obtain commits from the main file if [ -f /usr/local/bin/${PROJECT_NAME} ]; then @@ -1059,5 +1069,8 @@ fi if [[ $FN == 'zeronet' ]]; then mesh_zeronet fi +if [[ $FN == 'qtox' ]]; then + mesh_tox_client_qtox +fi exit 0