diff options
author | Dave Brolley <brolley@redhat.com> | 2008-08-20 14:40:36 -0400 |
---|---|---|
committer | Dave Brolley <brolley@redhat.com> | 2008-08-20 14:40:36 -0400 |
commit | 1598733bd611536ea7a708c161bc4bbfbf25569c (patch) | |
tree | 1b6d47478103b080f881bca4d5d8e0da6003af5e /stap-serverd | |
parent | a33ac7e8d41a9e195a4bad3c861fb2d3425fa5ca (diff) | |
download | systemtap-steved-1598733bd611536ea7a708c161bc4bbfbf25569c.tar.gz systemtap-steved-1598733bd611536ea7a708c161bc4bbfbf25569c.tar.xz systemtap-steved-1598733bd611536ea7a708c161bc4bbfbf25569c.zip |
stap client/server now pass 'make installcheck'
Diffstat (limited to 'stap-serverd')
-rwxr-xr-x | stap-serverd | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/stap-serverd b/stap-serverd index a6611255..6970217d 100755 --- a/stap-serverd +++ b/stap-serverd @@ -78,7 +78,7 @@ function listen { advertise_presence first=0 fi - wait %nc + wait '%nc' >/dev/null 2>&1 rc=$? if test $rc = 127 -o $rc = 0; then break; # success @@ -110,11 +110,11 @@ function terminate { # Kill the running 'avahi-publish-service' job kill -s SIGTERM %avahi-publish-service 2> /dev/null - wait %avahi-publish-service 2> /dev/null + wait '%avahi-publish-service' >/dev/null 2>&1 # Kill any running 'nc -l' job. kill -s SIGTERM "%nc -l" 2> /dev/null - wait "%nc - l" 2> /dev/null + wait "%nc - l" >/dev/null 2>&1 # Clean up cd `dirname $tmpdir` |