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

Function to remove tox node

parent 62e04497
No related branches found
No related tags found
Loading
......@@ -44,6 +44,26 @@ TOXIC_REPO="https://github.com/Tox/toxic"
TOXIC_COMMIT='cf16849b374e484a33a4dffa3dfb937b59d537f2'
TOXIC_FILE=/usr/local/bin/toxic
function remove_tox_node {
if ! grep -Fxq "install_tox_node" $COMPLETION_FILE; then
return
fi
iptables -D INPUT -p tcp --dport $TOX_PORT -j ACCEPT
function_check save_firewall_settings
save_firewall_settings
function_check remove_onion_service
remove_onion_service tox ${TOX_PORT}
${PROJECT_NAME}-mesh-install -f tox_node --remove yes
if [ ! "$?" = "0" ]; then
echo $'Failed to remove tox node'
exit 763836
fi
sed -i '/install_tox_node/d' $COMPLETION_FILE
}
function configure_firewall_for_tox {
if grep -Fxq "configure_firewall_for_tox" $COMPLETION_FILE; then
return
......
......@@ -432,6 +432,22 @@ function mesh_firewall {
$CHROOT_PREFIX systemctl enable meshfirewall
}
function mesh_tox_node_remove {
systemctl stop tox-bootstrapd
systemctl disable tox-bootstrapd
if [ -f /etc/systemd/system/tox-bootstrapd.service ]; then
rm /etc/systemd/system/tox-bootstrapd.service
fi
if [ -d $INSTALL_DIR/toxcore ]; then
cd $INSTALL_DIR/toxcore
make uninstall
rm -rf $INSTALL_DIR/toxcore
fi
if [ -f /etc/tox-bootstrapd.conf ]; then
rm /etc/tox-bootstrapd.conf
fi
}
function mesh_tox_node {
# obtain commits from the main file
if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
......@@ -1083,7 +1099,11 @@ if [[ $FN == 'batman_client' ]]; then
mesh_batman_client
fi
if [[ $FN == 'tox_node' ]]; then
mesh_tox_node
if [[ $REMOVE != 'yes' ]]; then
mesh_tox_node
else
mesh_tox_node_remove
fi
fi
if [[ $FN == 'tox_client' ]]; then
mesh_tox_client
......
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