Comment 20 for bug 458904

Revision history for this message
Martin Pitt (pitti) wrote : Re: [Bug 458904] Re: When installing a node, euca_find_cluster fails to locate the cluster controller if instances are running

Mathias Gug [2009-10-30 21:52 -0000]:
> -exec avahi-daemon -D
> +script
> + opts="-D"
> + [ -e "/etc/eucalyptus/avahi-daemon.conf" ] && opts="${opts} -f /etc/eucalyptus/avahi-daemon.conf"

Upstart scripts are "set -e" by default, so you are missing an "||
true" here. But even more, if /etc/eucalyptus/avahi-daemon.conf does
not exist, you need to drop -D entirely (to use the default file). So
I think you want

> -exec avahi-daemon -D
> + [ -e "/etc/eucalyptus/avahi-daemon.conf" ] && conf="-f /etc/eucalyptus/avahi-daemon.conf" || :
> + exec avahi-daemon -D $conf
> +end script

Martin
--
Martin Pitt | http://www.piware.de
Ubuntu Developer (www.ubuntu.com) | Debian Developer (www.debian.org)