Comment 6 for bug 449349

Revision history for this message
Chris Jones (cmsj) wrote :

Jon: 1.1 does work, although I think there's one tiny change we need to make - in /etc/bash_completion, in _known_hosts_real there's:

1311 compgen -W "$( avahi-browse -cpr _workstation._tcp | \

on my laptop avahi-browse always seems to print dbus warnings to stderr, so I've made that line be:

1311 compgen -W "$( avahi-browse -cpr _workstation._tcp 2>/dev/null| \

and it works fine. It's slow because this is a big network with well over a hundred avahi devices, but it does work and that's what matters!