summaryrefslogtreecommitdiff
path: root/debian/checkarray
diff options
context:
space:
mode:
authormadduck <madduck@3cfab66f-1918-0410-86b3-c06b76f9a464>2006-08-02 17:14:00 +0000
committermadduck <madduck@3cfab66f-1918-0410-86b3-c06b76f9a464>2006-08-02 17:14:00 +0000
commit08fd3d4951cb74e9a24838175d94764aed1c0f39 (patch)
treecff5ba99aa02d94e67db401574d414294d55d737 /debian/checkarray
parent664a93b2f8d922095579da42056c612e070ffb5d (diff)
s/parity/redundancy/
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