diff options
author | Michael Hanson <hansonorders@verizon.net> | 2010-11-20 03:52:05 (GMT) |
---|---|---|
committer | Michael Hanson <hansonorders@verizon.net> | 2010-11-20 03:52:05 (GMT) |
commit | ff5993f9531cd8a92743f36cf88a2c90f0b0b553 (patch) | |
tree | 8e8243c6f784ce09e16f3ac8404e6172e0c3e132 /abs/core/avahi/avahi.install | |
parent | 4cf461353e50a84f985b6204dc891e12072a2698 (diff) | |
download | linhes_pkgbuild-ff5993f9531cd8a92743f36cf88a2c90f0b0b553.zip linhes_pkgbuild-ff5993f9531cd8a92743f36cf88a2c90f0b0b553.tar.gz linhes_pkgbuild-ff5993f9531cd8a92743f36cf88a2c90f0b0b553.tar.bz2 |
avahi: upgrade
Diffstat (limited to 'abs/core/avahi/avahi.install')
-rw-r--r-- | abs/core/avahi/avahi.install | 45 |
1 files changed, 12 insertions, 33 deletions
diff --git a/abs/core/avahi/avahi.install b/abs/core/avahi/avahi.install index f0beca8..7c75c3d 100644 --- a/abs/core/avahi/avahi.install +++ b/abs/core/avahi/avahi.install @@ -1,42 +1,21 @@ post_install() { - echo -n "adding avahi system group... " - groupadd -g 84 avahi && echo "done." - echo -n "adding avahi system user... " - useradd -c "Avahi daemon" -u 84 -d / -g avahi -s /bin/false avahi \ - && echo "done." - passwd -l avahi &>/dev/null + 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 - post_upgrade - cat << 'EOM' + cat <<EOF ==> 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. +==> 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-web for avahi-bookmarks. - -EOM -} - -post_upgrade() { - true -} - -pre_remove() { - # pre_remove gets called whenever post_remove is defined. - true +==> In addition, pygtk is required for the graphical ones and +==> twisted for avahi-bookmarks. +EOF } post_remove() { - # post_remove doesn't start at a newline like the other post_* functions, - # so we'll have to make one for ourselves. - echo -n -e "\nremoving avahi system user... " - userdel avahi && echo "done." + getent passwd avahi &>/dev/null && userdel avahi >/dev/null + getent group avahi &>/dev/null && groupdel avahi >/dev/null } - -op=$1 -shift -$op $* |