Bob Mottram преди 8 години
родител
ревизия
09bc799226
променени са 6 файла, в които са добавени 37 реда и са изтрити 37 реда
  1. 5
    5
      src/freedombone-app-babel
  2. 5
    5
      src/freedombone-app-batman
  3. 9
    9
      src/freedombone-app-cjdns
  4. 2
    2
      src/freedombone-image-customise
  5. 12
    12
      src/freedombone-mesh-install
  6. 4
    4
      src/freedombone-utils-setup

+ 5
- 5
src/freedombone-app-babel Целия файл

37
 }
37
 }
38
 
38
 
39
 function remove_babel {
39
 function remove_babel {
40
-    if ! grep -Fxq "mesh_babel" $COMPLETION_FILE; then
40
+    if ! grep -Fxq "install_babel" $COMPLETION_FILE; then
41
         return
41
         return
42
     fi
42
     fi
43
 
43
 
51
     function_check save_firewall_settings
51
     function_check save_firewall_settings
52
     save_firewall_settings
52
     save_firewall_settings
53
 
53
 
54
-    sed -i '/mesh_babel/d' $COMPLETION_FILE
54
+    sed -i '/install_babel/d' $COMPLETION_FILE
55
     sed -i '/configure_firewall_for_babel/d' $COMPLETION_FILE
55
     sed -i '/configure_firewall_for_babel/d' $COMPLETION_FILE
56
 }
56
 }
57
 
57
 
70
     echo 'configure_firewall_for_babel' >> $COMPLETION_FILE
70
     echo 'configure_firewall_for_babel' >> $COMPLETION_FILE
71
 }
71
 }
72
 
72
 
73
-function mesh_babel {
74
-    if grep -Fxq "mesh_babel" $COMPLETION_FILE; then
73
+function install_babel {
74
+    if grep -Fxq "install_babel" $COMPLETION_FILE; then
75
         return
75
         return
76
     fi
76
     fi
77
     if [[ $ENABLE_BABEL != "yes" ]]; then
77
     if [[ $ENABLE_BABEL != "yes" ]]; then
86
 
86
 
87
     function_check configure_firewall_for_babel
87
     function_check configure_firewall_for_babel
88
     configure_firewall_for_babel
88
     configure_firewall_for_babel
89
-    echo 'mesh_babel' >> $COMPLETION_FILE
89
+    echo 'install_babel' >> $COMPLETION_FILE
90
 }
90
 }
91
 
91
 
92
 # NOTE: deliberately there is no "exit 0"
92
 # NOTE: deliberately there is no "exit 0"

+ 5
- 5
src/freedombone-app-batman Целия файл

50
 }
50
 }
51
 
51
 
52
 function remove_batman {
52
 function remove_batman {
53
-	if ! grep -Fxq "mesh_batman" $COMPLETION_FILE; then
53
+	if ! grep -Fxq "install_batman" $COMPLETION_FILE; then
54
 		return
54
 		return
55
 	fi
55
 	fi
56
 
56
 
59
 		echo $'Failed to remove batman'
59
 		echo $'Failed to remove batman'
60
 		exit 79353
60
 		exit 79353
61
 	fi
61
 	fi
62
-	sed -i '/mesh_batman/d' $COMPLETION_FILE
62
+	sed -i '/install_batman/d' $COMPLETION_FILE
63
 	sed -i '/configure_firewall_for_batman/d' $COMPLETION_FILE
63
 	sed -i '/configure_firewall_for_batman/d' $COMPLETION_FILE
64
 }
64
 }
65
 
65
 
66
-function mesh_batman {
67
-	if grep -Fxq "mesh_batman" $COMPLETION_FILE; then
66
+function install_batman {
67
+	if grep -Fxq "install_batman" $COMPLETION_FILE; then
68
 		return
68
 		return
69
 	fi
69
 	fi
70
 	if [[ $ENABLE_BATMAN != "yes" ]]; then
70
 	if [[ $ENABLE_BATMAN != "yes" ]]; then
91
 
91
 
92
 	function_check configure_firewall_for_batman
92
 	function_check configure_firewall_for_batman
93
 	configure_firewall_for_batman
93
 	configure_firewall_for_batman
94
-	echo 'mesh_batman' >> $COMPLETION_FILE
94
+	echo 'install_batman' >> $COMPLETION_FILE
95
 }
95
 }
96
 
96
 
97
 # NOTE: deliberately no exit 0
97
 # NOTE: deliberately no exit 0

+ 9
- 9
src/freedombone-app-cjdns Целия файл

112
 }
112
 }
113
 
113
 
114
 function remove_cjdns {
114
 function remove_cjdns {
115
-	if ! grep -Fxq "mesh_cjdns" $COMPLETION_FILE; then
115
+	if ! grep -Fxq "install_cjdns" $COMPLETION_FILE; then
116
 		return
116
 		return
117
 	fi
117
 	fi
118
 	service cjdns stop
118
 	service cjdns stop
124
 	save_firewall_settings
124
 	save_firewall_settings
125
 
125
 
126
 	rm -rf /etc/cjdns
126
 	rm -rf /etc/cjdns
127
-	sed -i '/mesh_cjdns/d' $COMPLETION_FILE
127
+	sed -i '/install_cjdns/d' $COMPLETION_FILE
128
 	sed -i '/cjdns /d' $COMPLETION_FILE
128
 	sed -i '/cjdns /d' $COMPLETION_FILE
129
 	sed -i '/configure_firewall_for_cjdns/d' $COMPLETION_FILE
129
 	sed -i '/configure_firewall_for_cjdns/d' $COMPLETION_FILE
130
 }
130
 }
131
 
131
 
132
-function mesh_cjdns {
132
+function install_cjdns {
133
 	if [[ $ENABLE_CJDNS != "yes" ]]; then
133
 	if [[ $ENABLE_CJDNS != "yes" ]]; then
134
 		return
134
 		return
135
 	fi
135
 	fi
138
 	function_check set_repo_commit
138
 	function_check set_repo_commit
139
 	set_repo_commit /etc/cjdns "cjdns commit" "$CJDNS_COMMIT" $CJDNS_REPO
139
 	set_repo_commit /etc/cjdns "cjdns commit" "$CJDNS_COMMIT" $CJDNS_REPO
140
 
140
 
141
-	if grep -Fxq "mesh_cjdns" $COMPLETION_FILE; then
141
+	if grep -Fxq "install_cjdns" $COMPLETION_FILE; then
142
 		return
142
 		return
143
 	fi
143
 	fi
144
 
144
 
418
 	function_check configure_firewall_for_cjdns
418
 	function_check configure_firewall_for_cjdns
419
 	configure_firewall_for_cjdns
419
 	configure_firewall_for_cjdns
420
 
420
 
421
-	echo 'mesh_cjdns' >> $COMPLETION_FILE
421
+	echo 'install_cjdns' >> $COMPLETION_FILE
422
 }
422
 }
423
 
423
 
424
-function mesh_cjdns_tools {
425
-	if grep -Fxq "mesh_cjdns_tools" $COMPLETION_FILE; then
424
+function install_cjdns_tools {
425
+	if grep -Fxq "install_cjdns_tools" $COMPLETION_FILE; then
426
 		return
426
 		return
427
 	fi
427
 	fi
428
 	if [[ $ENABLE_CJDNS != "yes" ]]; then
428
 	if [[ $ENABLE_CJDNS != "yes" ]]; then
429
 		return
429
 		return
430
 	fi
430
 	fi
431
 	if [ ! -d /etc/cjdns ]; then
431
 	if [ ! -d /etc/cjdns ]; then
432
-		mesh_cjdns
432
+		install_cjdns
433
 	fi
433
 	fi
434
 
434
 
435
 	function_check select_go_version
435
 	function_check select_go_version
477
 	# initialise from the cjdns config
477
 	# initialise from the cjdns config
478
 	/usr/bin/cjdcmd cjdnsadmin -file /etc/cjdns/cjdroute.conf
478
 	/usr/bin/cjdcmd cjdnsadmin -file /etc/cjdns/cjdroute.conf
479
 
479
 
480
-	echo 'mesh_cjdns_tools' >> $COMPLETION_FILE
480
+	echo 'install_cjdns_tools' >> $COMPLETION_FILE
481
 }
481
 }
482
 
482
 
483
 # NOTE: deliberately no exit 0
483
 # NOTE: deliberately no exit 0

+ 2
- 2
src/freedombone-image-customise Целия файл

531
 	chmod +x $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
531
 	chmod +x $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
532
 }
532
 }
533
 
533
 
534
-function mesh_batman {
534
+function install_batman {
535
 	chroot "$rootdir" apt-get -y install iproute bridge-utils libnetfilter-conntrack3 batctl
535
 	chroot "$rootdir" apt-get -y install iproute bridge-utils libnetfilter-conntrack3 batctl
536
 	chroot "$rootdir" apt-get -y install python-dev libevent-dev ebtables python-pip git
536
 	chroot "$rootdir" apt-get -y install python-dev libevent-dev ebtables python-pip git
537
 	chroot "$rootdir" apt-get -y install wireless-tools rfkill
537
 	chroot "$rootdir" apt-get -y install wireless-tools rfkill
1111
 
1111
 
1112
 	mesh_firewall
1112
 	mesh_firewall
1113
 	mesh_avahi
1113
 	mesh_avahi
1114
-	mesh_batman
1114
+	install_batman
1115
 	mesh_tox_node
1115
 	mesh_tox_node
1116
 	mesh_tox_avahi
1116
 	mesh_tox_avahi
1117
 	mesh_tox_client
1117
 	mesh_tox_client

+ 12
- 12
src/freedombone-mesh-install Целия файл

99
 }
99
 }
100
 
100
 
101
 
101
 
102
-function mesh_babel {
102
+function install_babel {
103
 	$CHROOT_PREFIX apt-get -y install babeld
103
 	$CHROOT_PREFIX apt-get -y install babeld
104
 
104
 
105
 	babel_script=${rootdir}/var/lib/babel
105
 	babel_script=${rootdir}/var/lib/babel
180
 	$CHROOT_PREFIX systemctl enable babel
180
 	$CHROOT_PREFIX systemctl enable babel
181
 }
181
 }
182
 
182
 
183
-function mesh_babel_remove {
183
+function install_babel_remove {
184
 	$CHROOT_PREFIX systemctl stop babel
184
 	$CHROOT_PREFIX systemctl stop babel
185
 	$CHROOT_PREFIX apt-get -y remove --purge babeld
185
 	$CHROOT_PREFIX apt-get -y remove --purge babeld
186
 	rm ${rootdir}/var/lib/babel
186
 	rm ${rootdir}/var/lib/babel
227
 	chmod +x $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
227
 	chmod +x $rootdir/usr/bin/$WATCHDOG_SCRIPT_NAME
228
 }
228
 }
229
 
229
 
230
-function mesh_babel_client {
230
+function install_babel_client {
231
 	# TODO to be fixed
231
 	# TODO to be fixed
232
 	if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
232
 	if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
233
 		TOXIC_FILE=$(cat /usr/local/bin/${PROJECT_NAME}-app-tox | grep "TOXIC_FILE=" | head -n 1 | awk -F '=' '{print $2}')
233
 		TOXIC_FILE=$(cat /usr/local/bin/${PROJECT_NAME}-app-tox | grep "TOXIC_FILE=" | head -n 1 | awk -F '=' '{print $2}')
333
 	sudo mv $babel_script ${rootdir}/usr/bin/babel
333
 	sudo mv $babel_script ${rootdir}/usr/bin/babel
334
 }
334
 }
335
 
335
 
336
-function mesh_batman_remove {
336
+function install_batman_remove {
337
 	systemctl stop batman
337
 	systemctl stop batman
338
 	rm $rootdir/var/lib/batman
338
 	rm $rootdir/var/lib/batman
339
 	rm $rootdir/etc/systemd/system/batman.service
339
 	rm $rootdir/etc/systemd/system/batman.service
340
 }
340
 }
341
 
341
 
342
-function mesh_batman {
342
+function install_batman {
343
 	$CHROOT_PREFIX apt-get -y install iproute bridge-utils libnetfilter-conntrack3 batctl
343
 	$CHROOT_PREFIX apt-get -y install iproute bridge-utils libnetfilter-conntrack3 batctl
344
 	$CHROOT_PREFIX apt-get -y install python-dev libevent-dev ebtables python-pip git
344
 	$CHROOT_PREFIX apt-get -y install python-dev libevent-dev ebtables python-pip git
345
 	$CHROOT_PREFIX apt-get -y install wireless-tools rfkill
345
 	$CHROOT_PREFIX apt-get -y install wireless-tools rfkill
799
 	$CHROOT_PREFIX systemctl enable zeronet.service
799
 	$CHROOT_PREFIX systemctl enable zeronet.service
800
 }
800
 }
801
 
801
 
802
-function mesh_batman_client {
802
+function install_batman_client {
803
 	if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
803
 	if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
804
 		TOXIC_FILE=$(cat /usr/local/bin/${PROJECT_NAME}-app-tox | grep "TOXIC_FILE=" | head -n 1 | awk -F '=' '{print $2}')
804
 		TOXIC_FILE=$(cat /usr/local/bin/${PROJECT_NAME}-app-tox | grep "TOXIC_FILE=" | head -n 1 | awk -F '=' '{print $2}')
805
 	else
805
 	else
1101
 
1101
 
1102
 if [[ $FN == 'babel' ]]; then
1102
 if [[ $FN == 'babel' ]]; then
1103
 	if [[ $REMOVE != 'yes' ]]; then
1103
 	if [[ $REMOVE != 'yes' ]]; then
1104
-		mesh_babel
1104
+		install_babel
1105
 	else
1105
 	else
1106
-		mesh_babel_remove
1106
+		install_babel_remove
1107
 	fi
1107
 	fi
1108
 fi
1108
 fi
1109
 if [[ $FN == 'babel_client' ]]; then
1109
 if [[ $FN == 'babel_client' ]]; then
1110
-	mesh_babel_client
1110
+	install_babel_client
1111
 fi
1111
 fi
1112
 if [[ $FN == 'avahi' ]]; then
1112
 if [[ $FN == 'avahi' ]]; then
1113
 	mesh_avahi
1113
 	mesh_avahi
1117
 fi
1117
 fi
1118
 if [[ $FN == 'batman' ]]; then
1118
 if [[ $FN == 'batman' ]]; then
1119
 	if [[ $REMOVE != 'yes' ]]; then
1119
 	if [[ $REMOVE != 'yes' ]]; then
1120
-		mesh_batman
1120
+		install_batman
1121
 	else
1121
 	else
1122
-		mesh_batman_remove
1122
+		install_batman_remove
1123
 	fi
1123
 	fi
1124
 fi
1124
 fi
1125
 if [[ $FN == 'batman_client' ]]; then
1125
 if [[ $FN == 'batman_client' ]]; then
1126
-	mesh_batman_client
1126
+	install_batman_client
1127
 fi
1127
 fi
1128
 if [[ $FN == 'tox_node' ]]; then
1128
 if [[ $FN == 'tox_node' ]]; then
1129
 	if [[ $REMOVE != 'yes' ]]; then
1129
 	if [[ $REMOVE != 'yes' ]]; then

+ 4
- 4
src/freedombone-utils-setup Целия файл

291
 }
291
 }
292
 
292
 
293
 function setup_mesh {
293
 function setup_mesh {
294
-	mesh_cjdns
295
-	mesh_cjdns_tools
296
-	mesh_batman
297
-	mesh_babel
294
+	install_cjdns
295
+	install_cjdns_tools
296
+	install_batman
297
+	install_babel
298
 }
298
 }
299
 
299
 
300
 function setup_email {
300
 function setup_email {