summaryrefslogtreecommitdiff
path: root/debian/checkarray
diff options
context:
space:
mode:
Diffstat (limited to 'debian/checkarray')
-rw-r--r--debian/checkarray8
1 files changed, 4 insertions, 4 deletions
diff --git a/debian/checkarray b/debian/checkarray
index 02230656..21b5eade 100644
--- a/debian/checkarray
+++ b/debian/checkarray
@@ -1,6 +1,6 @@
#!/bin/sh -eu
#
-# checkarray -- initiates a check run of an array's parity information.
+# checkarray -- initiates a check run of an array's redundancy information.
#
# Copyright © 2006 martin f. krafft <madduck@debian.org>
# distributed under the terms of the Artistic Licence.
@@ -11,7 +11,7 @@ PROGNAME=${0##*/}
about()
{
- echo "$PROGNAME -- RAID parity checker tool (revision $REVISION)"
+ echo "$PROGNAME -- RAID redundancy checker tool (revision $REVISION)"
echo "Copyright © 2006 martin f. krafft <madduck@debian.org>"
echo "Released under the terms of the Artistic Licence."
}
@@ -107,7 +107,7 @@ if [ -z "$(ls /sys/block/md* 2>/dev/null)" ]; then
fi
if [ -z "$(ls /sys/block/md*/md/level 2>/dev/null)" ]; then
- [ $quiet -lt 2 ] && echo "$PROGNAME: W: kernel too old, no support for parity checks." >&2
+ [ $quiet -lt 2 ] && echo "$PROGNAME: W: kernel too old, no support for redundancy checks." >&2
exit 6
fi
@@ -117,7 +117,7 @@ if ! egrep -q '^raid([1456]|10)$' /sys/block/md*/md/level 2>/dev/null; then
fi
if [ -z "$(ls /sys/block/md*/md/sync_action 2>/dev/null)" ]; then
- [ $quiet -lt 2 ] && echo "$PROGNAME: W: no kernel support for parity checks." >&2
+ [ $quiet -lt 2 ] && echo "$PROGNAME: W: no kernel support for redundancy checks." >&2
exit 3
fi