Browse Source

function to remove ipfs

Bob Mottram 8 years ago
parent
commit
8df611b0f9
2 changed files with 19 additions and 1 deletions
  1. 0
    1
      src/freedombone-app-gogs
  2. 19
    0
      src/freedombone-app-ipfs

+ 0
- 1
src/freedombone-app-gogs View File

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

+ 19
- 0
src/freedombone-app-ipfs View File

32
 IPFS_COMMIT='20b06a4cbce8884f5b194da6e98cb11f2c77f166'
32
 IPFS_COMMIT='20b06a4cbce8884f5b194da6e98cb11f2c77f166'
33
 IPFS_PORT=4001
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
 function configure_firewall_for_ipfs {
54
 function configure_firewall_for_ipfs {
36
 	if [[ $SYSTEM_TYPE == "$VARIANT_MAILBOX" || $SYSTEM_TYPE == "$VARIANT_CHAT" ]]; then
55
 	if [[ $SYSTEM_TYPE == "$VARIANT_MAILBOX" || $SYSTEM_TYPE == "$VARIANT_CHAT" ]]; then
37
 		return
56
 		return