xfs qa changes to get thinks working on irix

add verbosity to a file for debugging
reduce iteration count
This commit is contained in:
Tim Shimmin
2004-08-10 03:55:47 +00:00
parent 0e5f6a8c42
commit 4c56e56f91
11 changed files with 69 additions and 18 deletions
+12
View File
@@ -74,6 +74,18 @@ _acl_ls()
ls -ln $* | awk '{ print $1, $3, $4, $NF }' | _acl_filter_id
}
#
_acl_list()
{
_file1=$1
if [ $HOSTOS = "IRIX" ]; then
ls -D $_file1 | _acl_filter_id
else
chacl -l $_file1 | _acl_filter_id
fi
}
# create an ACL with n ACEs in it
#
_create_n_aces()