function to remove dlna

This commit is contained in:
Bob Mottram 2016-07-03 20:29:52 +01:00
parent c892dedab4
commit 0f71e54d7c
1 changed files with 16 additions and 0 deletions

View File

@ -49,6 +49,22 @@ function configure_firewall_for_dlna {
echo 'configure_firewall_for_dlna' >> $COMPLETION_FILE echo 'configure_firewall_for_dlna' >> $COMPLETION_FILE
} }
function remove_dlna_server {
if ! grep -Fxq "install_dlna_server" $COMPLETION_FILE; then
return
fi
service minidlna stop
apt-get -y remove --purge minidlna
if [ -f /etc/minidlna.conf ]; then
rm /etc/minidlna.conf
fi
iptables -D INPUT -p udp --dport 1900 -j ACCEPT
iptables -D INPUT -p tcp --dport 8200 -j ACCEPT
function_check save_firewall_settings
save_firewall_settings
sed -i '/install_dlna_server/d' $COMPLETION_FILE
}
function install_dlna_server { function install_dlna_server {
if grep -Fxq "install_dlna_server" $COMPLETION_FILE; then if grep -Fxq "install_dlna_server" $COMPLETION_FILE; then
return return