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
b7c8141a
Commit
b7c8141a
authored
9 years ago
by
Bob Mottram
Browse files
Options
Downloads
Patches
Plain Diff
Mesh script can also run on a 'server' (i.e. a dedicated peer)
parent
7b0ef394
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/freedombone-mesh
+28
-10
28 additions, 10 deletions
src/freedombone-mesh
with
28 additions
and
10 deletions
src/freedombone-mesh
+
28
−
10
View file @
b7c8141a
...
...
@@ -40,6 +40,12 @@ TOX_PORT=33445
TOXCORE_REPO
=
'git://github.com/irungentoo/toxcore.git'
TOX_BOOTSTRAP_ID_FILE
=
/var/lib/tox-bootstrapd/pubkey.txt
# client or server installations sounds odd for a mesh, but this
# indicates whether this is a dedicated mesh peer ("yes") or
# a 'client' such as a laptop or desktop machine with
# the freedombone-client script installed
SERVER_INSTALLATION
=
"no"
function
install_toxcore
{
if
[
-f
/etc/tox-bootstrapd.conf
]
;
then
return
...
...
@@ -207,8 +213,14 @@ function run_tox {
fi
}
if
[
!
-f
/usr/bin/batman
]
;
then
freedombone-client
if
[
-f
/var/lib/batman
]
;
then
SERVER_INSTALLATION
=
"yes"
fi
if
[[
$SERVER_INSTALLATION
==
"no"
]]
;
then
if
[
!
-f
/usr/bin/batman
]
;
then
freedombone-client
fi
fi
# alternative toxic paths
...
...
@@ -219,12 +231,14 @@ if [ -f /usr/local/share/toxic/DHTnodes ]; then
DHTNODES
=
/usr/local/share/toxic/DHTnodes
fi
if
[
!
-f
/tmp/meshtype
]
;
then
install_toxcore
install_toxid
sudo
batman start
if
[
!
"
$?
"
=
"0"
]
;
then
exit
2
if
[[
$SERVER_INSTALLATION
==
"no"
]]
;
then
if
[
!
-f
/tmp/meshtype
]
;
then
install_toxcore
install_toxid
sudo
batman start
if
[
!
"
$?
"
=
"0"
]
;
then
exit
2
fi
fi
fi
...
...
@@ -294,7 +308,9 @@ if [ ! -f $IRSSI_PATH ]; then
exit
0
fi
echo
'You need irssi/mumble/toxic installed on your system'
sudo
batman stop
if
[[
$SERVER_INSTALLATION
==
"no"
]]
;
then
sudo
batman stop
fi
exit
4
fi
fi
...
...
@@ -307,7 +323,9 @@ if [ ! -f $MUMBLE_PATH ]; then
exit
0
fi
echo
'You need irssi/mumble/toxic installed on your system'
sudo
batman stop
if
[[
$SERVER_INSTALLATION
==
"no"
]]
;
then
sudo
batman stop
fi
exit
4
fi
fi
...
...
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