Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
freedombone
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Context Sensitive Group
freedombone
Commits
137821b9
Commit
137821b9
authored
8 years ago
by
Bob Mottram
Browse files
Options
Downloads
Patches
Plain Diff
Function to remove tox node
parent
62e04497
No related branches found
Branches containing commit
No related tags found
Loading
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/freedombone-app-tox
+20
-0
20 additions, 0 deletions
src/freedombone-app-tox
src/freedombone-mesh-install
+21
-1
21 additions, 1 deletion
src/freedombone-mesh-install
with
41 additions
and
1 deletion
src/freedombone-app-tox
+
20
−
0
View file @
137821b9
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
src/freedombone-mesh-install
+
21
−
1
View file @
137821b9
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment