Ver código fonte

Function to remove search engine

Bob Mottram 8 anos atrás
pai
commit
06ec000f58
2 arquivos alterados com 22 adições e 0 exclusões
  1. 1
    0
      src/freedombone-app-irc
  2. 21
    0
      src/freedombone-app-search

+ 1
- 0
src/freedombone-app-irc Ver arquivo

@@ -47,6 +47,7 @@ function remove_irc_server {
47 47
 	iptables -D INPUT -p tcp --dport 1024:65535 --sport $IRC_PORT -j ACCEPT
48 48
 	function_check save_firewall_settings
49 49
 	save_firewall_settings
50
+	function_check remove_onion_service
50 51
 	remove_onion_service irc ${IRC_ONION_PORT}
51 52
 	sed -i '/install_irc_server/d' $COMPLETION_FILE
52 53
 	sed -i '/IRC /d' $COMPLETION_FILE

+ 21
- 0
src/freedombone-app-search Ver arquivo

@@ -36,6 +36,27 @@ SEARCH_ENGINE_ONION_HOSTNAME=
36 36
 SEARCH_ENGINE_LOGIN_TEXT=$"Search engine login"
37 37
 SEARCH_ENGINE_PASSWORD=
38 38
 
39
+function remove_search_engine {
40
+	if ! grep -Fxq "install_search_engine" $COMPLETION_FILE; then
41
+		return
42
+	fi
43
+	systemctl stop searx
44
+	systemctl disable searx
45
+	rm /etc/systemd/system/searx.service
46
+	function_check remove_onion_service
47
+	remove_onion_service searx ${SEARCH_ENGINE_ONION_PORT}
48
+	userdel -r searx
49
+	nginx_dissite searx
50
+	if [ -f /etc/nginx/sites-available/searx ]; then
51
+		rm /etc/nginx/sites-available/searx
52
+	fi
53
+	if [ -d ${SEARCH_ENGINE_PATH}/searx ]; then
54
+		rm -rf ${SEARCH_ENGINE_PATH}/searx
55
+	fi
56
+	sed -i '/install_search_engine/d' $COMPLETION_FILE
57
+	sed -i '/Search engine /d' $COMPLETION_FILE
58
+}
59
+
39 60
 function install_search_engine {
40 61
 	# Note: currently socks5 outgoing proxies to other search engines does not work
41 62
 	if [[ $SYSTEM_TYPE == "$VARIANT_MESH" ]]; then