xfs_io -> XFS_IO_PROG as used by dgc

Merge of master-melb:xfs-cmds:22779a by kenmcd.
This commit is contained in:
Tim Shimmin
2005-06-02 15:09:19 +00:00
parent bb98f0e757
commit 3ef27d6443
11 changed files with 39 additions and 37 deletions
+2 -2
View File
@@ -107,7 +107,7 @@ xfs_quota -c 'project -c 6' $QARGS | filter_xfs_quota
echo "### deny a hard link - wrong project ID"
rm -f $SCRATCH_MNT/outer $target/inner
xfs_io -f -c 'chproj 789' $SCRATCH_MNT/outer
$XFS_IO_PROG -f -c 'chproj 789' $SCRATCH_MNT/outer
ln $SCRATCH_MNT/outer $target/inner 2>/dev/null
if [ $? -eq 0 ]; then
echo hard link succeeded
@@ -118,7 +118,7 @@ fi
xfs_quota -c 'quota -ip 6' $QARGS | filter_xfs_quota
echo "### allow a hard link - right project ID"
xfs_io -c 'chproj 6' $SCRATCH_MNT/outer
$XFS_IO_PROG -c 'chproj 6' $SCRATCH_MNT/outer
ln $SCRATCH_MNT/outer $target/inner
if [ $? -eq 0 ]; then
echo hard link succeeded