소스 검색

function to remove ipfs

Bob Mottram 8 년 전
부모
커밋
8df611b0f9
2개의 변경된 파일19개의 추가작업 그리고 1개의 파일을 삭제
  1. 0
    1
      src/freedombone-app-gogs
  2. 19
    0
      src/freedombone-app-ipfs

+ 0
- 1
src/freedombone-app-gogs 파일 보기

@@ -55,7 +55,6 @@ function remove_gogs {
55 55
 	drop_database gogs
56 56
 	rm /etc/systemd/system/gogs.service
57 57
 	rm -rf $GOPATH/src/github.com/gogits
58
-	userdel -r git
59 58
 	sed -i '/install_gogs/d' $COMPLETION_FILE
60 59
 	sed -i '/Gogs /d' $COMPLETION_FILE
61 60
 }

+ 19
- 0
src/freedombone-app-ipfs 파일 보기

@@ -32,6 +32,25 @@ IPFS_GO_REPO="https://github.com/ipfs/go-ipfs"
32 32
 IPFS_COMMIT='20b06a4cbce8884f5b194da6e98cb11f2c77f166'
33 33
 IPFS_PORT=4001
34 34
 
35
+function remove_ipfs {
36
+	if ! grep -Fxq "install_ipfs" $COMPLETION_FILE; then
37
+		return
38
+	fi
39
+	function_check select_go_version
40
+	select_go_version
41
+	systemctl stop ipfs
42
+	systemctl disable ipfs
43
+	systemctl daemon-reload
44
+	rm /etc/systemd/system/ipfs.service
45
+	rm -rf $GOPATH/src/github.com/ipfs
46
+	iptables -D INPUT -p tcp --dport $IPFS_PORT -j ACCEPT
47
+	function_check save_firewall_settings
48
+	save_firewall_settings
49
+	sed -i '/install_ipfs/d' $COMPLETION_FILE
50
+	sed -i '/ipfs /d' $COMPLETION_FILE
51
+	sed -i '/configure_firewall_for_ipfs/d' $COMPLETION_FILE
52
+}
53
+
35 54
 function configure_firewall_for_ipfs {
36 55
 	if [[ $SYSTEM_TYPE == "$VARIANT_MAILBOX" || $SYSTEM_TYPE == "$VARIANT_CHAT" ]]; then
37 56
 		return