|
@@ -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
|