diff options
-rwxr-xr-x | stap-find-servers | 2 | ||||
-rwxr-xr-x | stap-serverd | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/stap-find-servers b/stap-find-servers index 8eda71e8..789f508b 100755 --- a/stap-find-servers +++ b/stap-find-servers @@ -40,7 +40,7 @@ function find_servers { fatal "Cannot create temporary file " $tmpfile # Find servers - avahi-browse $stap_avahi_service_tag --terminate -r 2>/dev/null > $tmpfile & + avahi-browse $stap_avahi_service_tag --terminate -r > $tmpfile & for ((attempt=0; $attempt < $timeout; ++attempt)) do diff --git a/stap-serverd b/stap-serverd index 08b16008..431d03e9 100755 --- a/stap-serverd +++ b/stap-serverd @@ -309,7 +309,7 @@ function advertise_presence { # Call avahi-publish-service to advertise our presence. avahi-publish-service "Systemtap Compile Server on `uname -n`" \ - $stap_avahi_service_tag $port "$txt" > /dev/null 2>&1 & + $stap_avahi_service_tag $port "$txt" > /dev/null & echo "Systemtap Compile Server on `uname -n` listening on port $port" } |