From 498f3fc095103b2a220a00b27d43f4dae02d5459 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 8 Jun 2011 22:47:34 +0000 Subject: Wed Jun 8 22:47:33 UTC 2011 --- testing/avahi/avahi.install | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 testing/avahi/avahi.install (limited to 'testing/avahi/avahi.install') diff --git a/testing/avahi/avahi.install b/testing/avahi/avahi.install new file mode 100644 index 000000000..7c75c3dd4 --- /dev/null +++ b/testing/avahi/avahi.install @@ -0,0 +1,21 @@ +post_install() { + getent group avahi &>/dev/null || groupadd -r -g 84 avahi >/dev/null + getent passwd avahi &>/dev/null || useradd -r -u 84 -g avahi -d / -s /bin/false -c avahi avahi >/dev/null + + cat < The following daemons may be added to DAEMONS in /etc/rc.conf: +==> avahi-daemon: the mdns responder, you probably want this. +==> dbus needs to be running when you start it. +==> avahi-dnsconfd: daemon used for peer-to-peer automatic dns +==> configuration on dhcp-less networks. + +==> To use some of the client applications you will have to install python. +==> In addition, pygtk is required for the graphical ones and +==> twisted for avahi-bookmarks. +EOF +} + +post_remove() { + getent passwd avahi &>/dev/null && userdel avahi >/dev/null + getent group avahi &>/dev/null && groupdel avahi >/dev/null +} -- cgit v1.2.3-54-g00ecf