Parcourir la source

Function to remove zeronet

Bob Mottram il y a 8 ans
Parent
révision
7da0bb1e81
2 fichiers modifiés avec 37 ajouts et 6 suppressions
  1. 14
    5
      src/freedombone-app-zeronet
  2. 23
    1
      src/freedombone-mesh-install

+ 14
- 5
src/freedombone-app-zeronet Voir le fichier

@@ -70,7 +70,7 @@ function install_zeronet_blog {
70 70
 		return
71 71
 	fi
72 72
 
73
-    function_check set_repo_commit
73
+	function_check set_repo_commit
74 74
 	set_repo_commit $MESH_INSTALL_DIR/zeronet/ZeroBlog "ZeroNet Blog commit" "$ZERONET_BLOG_COMMIT" $ZERONET_BLOG_REPO
75 75
 
76 76
 	if grep -Fxq "install_zeronet_blog" $COMPLETION_FILE; then
@@ -122,7 +122,7 @@ function install_zeronet_blog {
122 122
 		exit 7638
123 123
 	fi
124 124
 
125
-    function_check git_clone
125
+	function_check git_clone
126 126
 	git_clone $ZERONET_BLOG_REPO ZeroBlog
127 127
 	if [ ! -d $MESH_INSTALL_DIR/zeronet/ZeroBlog ]; then
128 128
 		echo $'ZeroBlog repo could not be cloned'
@@ -176,7 +176,7 @@ function install_zeronet_mail {
176 176
 		return
177 177
 	fi
178 178
 
179
-    function_check set_repo_commit
179
+	function_check set_repo_commit
180 180
 	set_repo_commit $MESH_INSTALL_DIR/zeronet/ZeroMail "ZeroNet Mail commit" "$ZERONET_MAIL_COMMIT" $ZERONET_MAIL_REPO
181 181
 
182 182
 	if grep -Fxq "install_zeronet_mail" $COMPLETION_FILE; then
@@ -228,7 +228,7 @@ function install_zeronet_mail {
228 228
 		exit 7638
229 229
 	fi
230 230
 
231
-    function_check git_clone
231
+	function_check git_clone
232 232
 	git_clone $ZERONET_MAIL_REPO ZeroMail
233 233
 	if [ ! -d $MESH_INSTALL_DIR/zeronet/ZeroMail ]; then
234 234
 		echo $'ZeroMail repo could not be cloned'
@@ -335,7 +335,7 @@ function install_zeronet_forum {
335 335
 		exit 7638
336 336
 	fi
337 337
 
338
-    function_check git_clone
338
+	function_check git_clone
339 339
 	git_clone $ZERONET_FORUM_REPO ZeroTalk
340 340
 	if [ ! -d $MESH_INSTALL_DIR/zeronet/ZeroTalk ]; then
341 341
 		echo $'ZeroTalk repo could not be cloned'
@@ -378,6 +378,15 @@ function install_zeronet_forum {
378 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 390
 function install_zeronet {
382 391
 	if [[ $SYSTEM_TYPE != "$VARIANT_MESH" ]]; then
383 392
 		return

+ 23
- 1
src/freedombone-mesh-install Voir le fichier

@@ -668,6 +668,24 @@ function mesh_tox_client_toxic_from_repo {
668 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 689
 function mesh_zeronet {
672 690
 	# obtain commits from the main file
673 691
 	if [ -f /usr/local/bin/${PROJECT_NAME} ]; then
@@ -1122,7 +1140,11 @@ if [[ $FN == 'tox_client' ]]; then
1122 1140
 	fi
1123 1141
 fi
1124 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 1148
 fi
1127 1149
 if [[ $FN == 'qtox' ]]; then
1128 1150
 	mesh_tox_client_qtox