summaryrefslogtreecommitdiffstats
path: root/network/avahi/README.SBo
diff options
context:
space:
mode:
author David Somero2010-05-12 17:43:00 +0200
committer Robby Workman2010-05-12 17:43:00 +0200
commitb850afe2a72970b5e05d1d1c33930c62e29588cf (patch)
tree6f1658de516bea1ddf8c21a8771dd720504dc205 /network/avahi/README.SBo
parent7e284861aa8bc796729f94830aea1d80c6d7ad6e (diff)
downloadslackbuilds-b850afe2a72970b5e05d1d1c33930c62e29588cf.tar.gz
network/avahi: Updated for version 0.6.25
Diffstat (limited to 'network/avahi/README.SBo')
-rw-r--r--network/avahi/README.SBo18
1 files changed, 12 insertions, 6 deletions
diff --git a/network/avahi/README.SBo b/network/avahi/README.SBo
index 6bd5c7b886..7ed36c711e 100644
--- a/network/avahi/README.SBo
+++ b/network/avahi/README.SBo
@@ -4,12 +4,7 @@ First, be sure you have an "avahi" user and group. Do this *before*
you install the avahi package. We recommend uid/gid of 214, but
adjust as needed for your system. Something like this should suffice:
# groupadd -g 214 avahi
- # useradd -u 214 -g 214 -c "Avahi" -d /dev/null -s /bin/false avahi
-
-Ask DBUS to re-read its policies; this only has to be done once:
- # /etc/rc.d/rc.messagbus reload
- OR
- # kill -HUP $(cat /var/run/dbus/pid)
+ # useradd -u 214 -g 214 -c "Avahi User" -d /dev/null -s /bin/false avahi
Now start the Avahi daemon:
# /etc/rc.d/rc.avahidaemon start
@@ -17,3 +12,14 @@ Now start the Avahi daemon:
Optionally start the unicast DNS configuration daemon:
# /etc/rc.d/rc.avahidnsconfd start
+You will need to start avahi at boot by adding the following
+to your /etc/rc.d/rc.local and make them executable:
+ # Start avahidaemon
+ if [ -x /etc/rc.d/rc.avahidaemon ]; then
+ /etc/rc.d/rc.avahidaemon start
+ fi
+ # Start avahidnsconfd
+ if [ -x /etc/rc.d/rc.avahidnsconfd ]; then
+ /etc/rc.d/rc.avahidnsconfd start
+ fi
+