Quellcode durchsuchen

function to remove dlna

Bob Mottram vor 8 Jahren
Ursprung
Commit
0f71e54d7c
1 geänderte Dateien mit 16 neuen und 0 gelöschten Zeilen
  1. 16
    0
      src/freedombone-app-dlna

+ 16
- 0
src/freedombone-app-dlna Datei anzeigen

@@ -49,6 +49,22 @@ function configure_firewall_for_dlna {
49 49
 	echo 'configure_firewall_for_dlna' >> $COMPLETION_FILE
50 50
 }
51 51
 
52
+function remove_dlna_server {
53
+	if ! grep -Fxq "install_dlna_server" $COMPLETION_FILE; then
54
+		return
55
+	fi
56
+	service minidlna stop
57
+	apt-get -y remove --purge minidlna
58
+	if [ -f /etc/minidlna.conf ]; then
59
+		rm /etc/minidlna.conf
60
+	fi
61
+	iptables -D INPUT -p udp --dport 1900 -j ACCEPT
62
+	iptables -D INPUT -p tcp --dport 8200 -j ACCEPT
63
+	function_check save_firewall_settings
64
+	save_firewall_settings
65
+	sed -i '/install_dlna_server/d' $COMPLETION_FILE
66
+}
67
+
52 68
 function install_dlna_server {
53 69
 	if grep -Fxq "install_dlna_server" $COMPLETION_FILE; then
54 70
 		return