Skip to content
This repository has been archived by the owner on Sep 30, 2018. It is now read-only.

Commit

Permalink
fixes an avahi issue where the network domain .local is already used
Browse files Browse the repository at this point in the history
  • Loading branch information
Piethein Strengholt committed May 4, 2012
1 parent 5f3426d commit 80f99be
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions Files/config/hooks/22-setavahi.chroot
@@ -0,0 +1,28 @@
#!/bin/bash

# Copyright (C) 2005-2008 Team XBMC
# http://www.xbmc.org
#
# This Program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; either version 2, or (at your option)
# any later version.
#
# This Program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with XBMC; see the file COPYING. If not, write to
# the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
# http://www.gnu.org/copyleft/gpl.html

echo ""
echo "Disable avahi deamon to detect local..."
echo ""

#fixes issues where the network domain .local is already being used
if [ -f /etc/default/avahi-daemon ]; then
sed -i "s/AVAHI_DAEMON_DETECT_LOCAL=1/AVAHI_DAEMON_DETECT_LOCAL=0/g" /etc/default/avahi-daemon
fi

0 comments on commit 80f99be

Please sign in to comment.