]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[3406] Fixed cleanup in signal handling tests for DHCPv6.
authorMarcin Siodelski <marcin@isc.org>
Fri, 23 May 2014 17:12:32 +0000 (19:12 +0200)
committerMarcin Siodelski <marcin@isc.org>
Fri, 23 May 2014 17:12:32 +0000 (19:12 +0200)
src/bin/dhcp6/tests/dhcp6_test_func.sh

index e785fbb47034014c1abc23db3048f6c59fa8ef55..48a237c8e5080ac3771883ebeed95bf834b3423a 100755 (executable)
@@ -40,7 +40,7 @@ set_logger() {
 _GET_PIDS=     # Holds space separated list of DHCPv6 pids.
 _GET_PIDS_NUM= # Holds the number of DHCPv6 server pids.
 get_pids() {
-    _GET_PIDS=`ps -o pid,command | grep b10-dhcp6 | grep -v grep | awk '{print $1}'`
+    _GET_PIDS=`ps -ax -o pid,command | grep b10-dhcp6 | grep -v grep | awk '{print $1}'`
     _GET_PIDS_NUM=`printf "%s" "${_GET_PIDS}" | wc -w | awk '{print $1}'`
 }