Browse Source

Function to remove zeronet

Bob Mottram 8 years ago
parent
commit
7da0bb1e81
2 changed files with 37 additions and 6 deletions
  1. 14
    5
      src/freedombone-app-zeronet
  2. 23
    1
      src/freedombone-mesh-install

+ 14
- 5
src/freedombone-app-zeronet View File

70
 		return
70
 		return
71
 	fi
71
 	fi
72
 
72
 
73
-    function_check set_repo_commit
73
+	function_check set_repo_commit
74
 	set_repo_commit $MESH_INSTALL_DIR/zeronet/ZeroBlog "ZeroNet Blog commit" "$ZERONET_BLOG_COMMIT" $ZERONET_BLOG_REPO
74
 	set_repo_commit $MESH_INSTALL_DIR/zeronet/ZeroBlog "ZeroNet Blog commit" "$ZERONET_BLOG_COMMIT" $ZERONET_BLOG_REPO
75
 
75
 
76
 	if grep -Fxq "install_zeronet_blog" $COMPLETION_FILE; then
76
 	if grep -Fxq "install_zeronet_blog" $COMPLETION_FILE; then
122
 		exit 7638
122
 		exit 7638
123
 	fi
123
 	fi
124
 
124
 
125
-    function_check git_clone
125
+	function_check git_clone
126
 	git_clone $ZERONET_BLOG_REPO ZeroBlog
126
 	git_clone $ZERONET_BLOG_REPO ZeroBlog
127
 	if [ ! -d $MESH_INSTALL_DIR/zeronet/ZeroBlog ]; then
127
 	if [ ! -d $MESH_INSTALL_DIR/zeronet/ZeroBlog ]; then
128
 		echo $'ZeroBlog repo could not be cloned'
128
 		echo $'ZeroBlog repo could not be cloned'
176
 		return
176
 		return
177
 	fi
177
 	fi
178
 
178
 
179
-    function_check set_repo_commit
179
+	function_check set_repo_commit
180
 	set_repo_commit $MESH_INSTALL_DIR/zeronet/ZeroMail "ZeroNet Mail commit" "$ZERONET_MAIL_COMMIT" $ZERONET_MAIL_REPO
180
 	set_repo_commit $MESH_INSTALL_DIR/zeronet/ZeroMail "ZeroNet Mail commit" "$ZERONET_MAIL_COMMIT" $ZERONET_MAIL_REPO
181
 
181
 
182
 	if grep -Fxq "install_zeronet_mail" $COMPLETION_FILE; then
182
 	if grep -Fxq "install_zeronet_mail" $COMPLETION_FILE; then
228
 		exit 7638
228
 		exit 7638
229
 	fi
229
 	fi
230
 
230
 
231
-    function_check git_clone
231
+	function_check git_clone
232
 	git_clone $ZERONET_MAIL_REPO ZeroMail
232
 	git_clone $ZERONET_MAIL_REPO ZeroMail
233
 	if [ ! -d $MESH_INSTALL_DIR/zeronet/ZeroMail ]; then
233
 	if [ ! -d $MESH_INSTALL_DIR/zeronet/ZeroMail ]; then
234
 		echo $'ZeroMail repo could not be cloned'
234
 		echo $'ZeroMail repo could not be cloned'
335
 		exit 7638
335
 		exit 7638
336
 	fi
336
 	fi
337
 
337
 
338
-    function_check git_clone
338
+	function_check git_clone
339
 	git_clone $ZERONET_FORUM_REPO ZeroTalk
339
 	git_clone $ZERONET_FORUM_REPO ZeroTalk
340
 	if [ ! -d $MESH_INSTALL_DIR/zeronet/ZeroTalk ]; then
340
 	if [ ! -d $MESH_INSTALL_DIR/zeronet/ZeroTalk ]; then
341
 		echo $'ZeroTalk repo could not be cloned'
341
 		echo $'ZeroTalk repo could not be cloned'
378
 	echo 'install_zeronet_forum' >> $COMPLETION_FILE
378
 	echo 'install_zeronet_forum' >> $COMPLETION_FILE
379
 }
379
 }
380
 
380
 
381
+function remove_zeronet {
382
+	if ! grep -Fxq "install_zeronet" $COMPLETION_FILE; then
383
+		return
384
+	fi
385
+	${PROJECT_NAME}-mesh-install -f zeronet --remove yes
386
+	sed -i '/install_zeronet/d' $COMPLETION_FILE
387
+	sed -i '/ZeroNet /d' $COMPLETION_FILE
388
+}
389
+
381
 function install_zeronet {
390
 function install_zeronet {
382
 	if [[ $SYSTEM_TYPE != "$VARIANT_MESH" ]]; then
391
 	if [[ $SYSTEM_TYPE != "$VARIANT_MESH" ]]; then
383
 		return
392
 		return

+ 23
- 1
src/freedombone-mesh-install View File

668
 	echo "Toxic Installed."
668
 	echo "Toxic Installed."
669
 }
669
 }
670
 
670
 
671
+function mesh_zeronet_remove {
672
+	systemctl stop zeronet
673
+	systemctl disable zeronet
674
+	systemctl stop tracker
675
+	systemctl disable tracker
676
+	$CHROOT_PREFIX apt-get -y remove --purge bittornado
677
+	if [ -f $rootdir/etc/systemd/system/zeronet.service ]; then
678
+		rm $rootdir/etc/systemd/system/zeronet.service
679
+	fi
680
+	if [ -f $rootdir/etc/systemd/system/tracker.service ]; then
681
+		rm $rootdir/etc/systemd/system/tracker.service
682
+	fi
683
+	if [ -d $rootdir$MESH_INSTALL_DIR/zeronet ]; then
684
+		rm -rf $rootdir$MESH_INSTALL_DIR/zeronet
685
+	fi
686
+	userdel -r zeronet
687
+}
688
+
671
 function mesh_zeronet {
689
 function mesh_zeronet {
672
 	# obtain commits from the main file
690
 	# obtain commits from the main file
673
 	if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
691
 	if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
1122
 	fi
1140
 	fi
1123
 fi
1141
 fi
1124
 if [[ $FN == 'zeronet' ]]; then
1142
 if [[ $FN == 'zeronet' ]]; then
1125
-	mesh_zeronet
1143
+	if [[ $REMOVE != 'yes' ]]; then
1144
+		mesh_zeronet
1145
+	else
1146
+		mesh_zeronet_remove
1147
+	fi
1126
 fi
1148
 fi
1127
 if [[ $FN == 'qtox' ]]; then
1149
 if [[ $FN == 'qtox' ]]; then
1128
 	mesh_tox_client_qtox
1150
 	mesh_tox_client_qtox