summaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
authorZdenek Kabelac <zkabelac@redhat.com>2015-04-22 09:00:21 +0200
committerZdenek Kabelac <zkabelac@redhat.com>2015-04-22 09:09:26 +0200
commit16ee4642c732bbe80009d4b1471c8a84f4279099 (patch)
tree01b70af9feb53a0b9ae47bdffaa46415ed3ca929 /nix
parent2e035162a13d9ed6036b1bd8cdacbfa7ba1fd748 (diff)
downloadlvm2-16ee4642c732bbe80009d4b1471c8a84f4279099.tar.gz
nix: install also mdadm
Some tests are checking functinality of lvm2 with mdadm.
Diffstat (limited to 'nix')
-rw-r--r--nix/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/nix/default.nix b/nix/default.nix
index 5d2a26006..a1cc98fdf 100644
--- a/nix/default.nix
+++ b/nix/default.nix
@@ -116,9 +116,9 @@ let
else
counter=0
fi
- if test $counter -eq 10 || test $(cat hb.current | wc -c) -eq $(cat hb.last | wc -c); then
+ if test $counter -eq 10 || test $(wc -c <hb.current) -eq $(wc -c <hb.last); then
echo
- echo "VM got stuck; heartbeat: $(cat hb.current | wc -c) $(cat hb.last | wc -c), counter = $counter."
+ echo "VM got stuck; heartbeat: $(wc -c <hb.current) $(wc -c <hb.last), counter = $counter."
echo "last journal entry: $(tail -n 1 j.current), previously $(tail -n 1 j.last)"
kill -- -$(cat pid)
fi
@@ -355,6 +355,7 @@ let
"redhat-rpm-config" # needed for rpmbuild of lvm
"which" "e2fsprogs" # needed for fsadm
"perl-GD" # for lcov
+ "mdadm" # for tests with lvm2 and mdadm
"kernel"
];
centos63 = [ "clusterlib-devel" "openaislib-devel" "cman" "libudev-devel" "valgrind-devel" "procps" ];