diff options
| author | Nigel Babu <nigelb@redhat.com> | 2016-09-13 15:54:48 +0530 | 
|---|---|---|
| committer | Niels de Vos <ndevos@redhat.com> | 2016-09-14 23:15:46 -0700 | 
| commit | a046e4d5bbd2ee756ff6fdb7aa1aca115002b133 (patch) | |
| tree | c4f351cff5eb393c2fdf869c00a6d8d7b0451f75 | |
| parent | 613575ee7140e257d8f0265b719cbfc7c44a0297 (diff) | |
tests: Kill rpc.statd on tests in Linux as well
The lack of this causes the /var/messages file on Linux test nodes to be filled
up and cause space issues.
Change-Id: I4c741c34de7f584859d1c62bdfda44a3d79c7ecc
BUG: 1375526
Signed-off-by: Nigel Babu <nigelb@redhat.com>
Reviewed-on: http://review.gluster.org/15485
NetBSD-regression: NetBSD Build System <jenkins@build.gluster.org>
Smoke: Gluster Build System <jenkins@build.gluster.org>
CentOS-regression: Gluster Build System <jenkins@build.gluster.org>
Reviewed-by: Niels de Vos <ndevos@redhat.com>
| -rw-r--r-- | tests/include.rc | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/include.rc b/tests/include.rc index cdd1a1fa132..b015fac1197 100644 --- a/tests/include.rc +++ b/tests/include.rc @@ -8,7 +8,7 @@ V1=${V1:=patchy1};            # volume name to use in tests  GMV0=${GMV0:=master};	      # master volume name to use in geo-rep tests  GSV0=${GSV0:=slave};	      # slave volume name to use in geo-rep tests  B0=${B0:=/d/backends};        # top level of brick directories -WORKDIRS="$B0 $M0 $M1 $M2 $N0 $N1"  +WORKDIRS="$B0 $M0 $M1 $M2 $N0 $N1"  ROOT_GFID="00000000-0000-0000-0000-000000000001" @@ -462,9 +462,9 @@ function cleanup()          umount $flag /tmp/mnt* 2>/dev/null -        # Send SIGKILL to all gluster processes that are still running -        killall -9 glusterfs glusterfsd glusterd 2>/dev/null || true; -        test x"$OSTYPE" = x"NetBSD" && pkill -9 perfused rpc.statd || true +        # Send SIGKILL to all gluster processes and rpc.statd that are still running +        killall -9 glusterfs glusterfsd glusterd rpc.statd 2>/dev/null || true; +        test x"$OSTYPE" = x"NetBSD" && pkill -9 perfused || true          # unregister nfs and related services from portmapper/rpcbind          ## nfs  | 
