2001-01-15 05:01:19 +00:00
|
|
|
#! /bin/sh
|
|
|
|
|
# XFS QA Test No. 051
|
|
|
|
|
# $Id: 1.1 $
|
|
|
|
|
#
|
|
|
|
|
# Test out ACLs.
|
|
|
|
|
#
|
|
|
|
|
#-----------------------------------------------------------------------
|
2002-06-04 23:07:56 +00:00
|
|
|
# Copyright (c) 2000-2002 Silicon Graphics, Inc. All Rights Reserved.
|
2001-01-15 05:01:19 +00:00
|
|
|
#
|
|
|
|
|
# This program is free software; you can redistribute it and/or modify it
|
|
|
|
|
# under the terms of version 2 of the GNU General Public License as
|
|
|
|
|
# published by the Free Software Foundation.
|
|
|
|
|
#
|
|
|
|
|
# This program is distributed in the hope that it would be useful, but
|
|
|
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
#
|
|
|
|
|
# Further, this software is distributed without any warranty that it is
|
|
|
|
|
# free of the rightful claim of any third person regarding infringement
|
|
|
|
|
# or the like. Any license provided herein, whether implied or
|
|
|
|
|
# otherwise, applies only to this software file. Patent licenses, if
|
|
|
|
|
# any, provided herein do not apply to combinations of this program with
|
|
|
|
|
# other software, or any other product whatsoever.
|
|
|
|
|
#
|
|
|
|
|
# You should have received a copy of the GNU General Public License along
|
|
|
|
|
# with this program; if not, write the Free Software Foundation, Inc., 59
|
|
|
|
|
# Temple Place - Suite 330, Boston MA 02111-1307, USA.
|
|
|
|
|
#
|
|
|
|
|
# Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy,
|
|
|
|
|
# Mountain View, CA 94043, or:
|
|
|
|
|
#
|
|
|
|
|
# http://www.sgi.com
|
|
|
|
|
#
|
|
|
|
|
# For further information regarding this notice, see:
|
|
|
|
|
#
|
|
|
|
|
# http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/
|
|
|
|
|
#-----------------------------------------------------------------------
|
|
|
|
|
#
|
|
|
|
|
# creator
|
|
|
|
|
owner=tes@sgi.com
|
|
|
|
|
|
|
|
|
|
seq=`basename $0`
|
|
|
|
|
|
|
|
|
|
here=`pwd`
|
|
|
|
|
tmp=/tmp/$$
|
|
|
|
|
runas=$here/src/runas
|
|
|
|
|
status=1 # FAILure is the default!
|
|
|
|
|
trap "_cleanup; exit \$status" 0 1 2 3 15
|
|
|
|
|
|
|
|
|
|
# get standard environment, filters and checks
|
|
|
|
|
. ./common.rc
|
|
|
|
|
. ./common.filter
|
2001-04-02 00:41:31 +00:00
|
|
|
. ./common.attr
|
2001-01-15 05:01:19 +00:00
|
|
|
|
|
|
|
|
_cleanup()
|
|
|
|
|
{
|
|
|
|
|
rm -f $tmp.*
|
|
|
|
|
rm -rf $TEST_DIR/$seq.dir1
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
# -----
|
|
|
|
|
# minimal access ACL has ACEs: USER_OBJ, GROUP_OBJ, OTHER_OBJ
|
|
|
|
|
# This is set with chacl(1) and can be changed by chmod(1).
|
|
|
|
|
#
|
|
|
|
|
# Test that this is being set for ACL and for std unix permissions
|
|
|
|
|
# Test that we can get back the same ACL.
|
|
|
|
|
# Test std permissions for rwx.
|
|
|
|
|
# -----
|
|
|
|
|
#
|
|
|
|
|
# Test out default ACLs and that the ACL is being PASSed
|
|
|
|
|
# onto the children of the dir.
|
|
|
|
|
#
|
|
|
|
|
# -----
|
|
|
|
|
# Test out access check for extended ACLs.
|
|
|
|
|
# -> 3 extra ACEs: MASK, GROUP, USER
|
|
|
|
|
# -> the GROUP compares with egid of process _and_ the supplementary
|
|
|
|
|
# groups (as found in /etc/group)
|
|
|
|
|
#
|
|
|
|
|
# Test that mask works for USER, GROUP, GROUP_OBJ
|
|
|
|
|
# Test that the ACE type priority is working
|
|
|
|
|
# -> this would be done by simultaneously matching on ACEs
|
|
|
|
|
# -> interesting if it allows user to specify ACEs in any order
|
|
|
|
|
#
|
2001-01-31 07:08:16 +00:00
|
|
|
rm -f $seq.full
|
2001-01-15 05:01:19 +00:00
|
|
|
|
2001-02-06 05:41:13 +00:00
|
|
|
_need_to_be_root
|
2001-04-02 00:41:31 +00:00
|
|
|
_acl_setup_ids
|
2002-05-09 05:26:20 +00:00
|
|
|
_acl_requirements
|
2001-01-15 05:01:19 +00:00
|
|
|
[ -x $runas ] || _notrun "$runas executable not found"
|
|
|
|
|
|
|
|
|
|
# get dir
|
|
|
|
|
cd $TEST_DIR
|
|
|
|
|
rm -rf $seq.dir1
|
|
|
|
|
mkdir $seq.dir1
|
|
|
|
|
cd $seq.dir1
|
|
|
|
|
|
|
|
|
|
#-------------------------------------------------------
|
|
|
|
|
# real QA test starts here
|
2001-01-31 07:08:16 +00:00
|
|
|
echo "QA output created by $seq"
|
2001-01-15 05:01:19 +00:00
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "=== Test minimal ACE ==="
|
|
|
|
|
|
|
|
|
|
echo "Setup file"
|
2001-02-20 08:07:09 +00:00
|
|
|
# Note: as this is a shell script,
|
|
|
|
|
# will need read and execute permission set
|
|
|
|
|
# in order to execute it.
|
2001-01-15 05:01:19 +00:00
|
|
|
touch file1
|
|
|
|
|
cat <<EOF >file1
|
|
|
|
|
#!/bin/sh
|
|
|
|
|
echo "Test was executed"
|
|
|
|
|
EOF
|
|
|
|
|
chmod u=rwx file1
|
|
|
|
|
chmod g=rw- file1
|
|
|
|
|
chmod o=r-- file1
|
|
|
|
|
chown $acl1.$acl2 file1
|
2001-04-02 00:41:31 +00:00
|
|
|
_acl_ls file1
|
2001-01-15 05:01:19 +00:00
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "--- Test get and set of ACL ---"
|
2002-02-25 22:39:00 +00:00
|
|
|
echo "Note: Old interface gave an empty ACL - now output an ACL"
|
2001-04-02 00:41:31 +00:00
|
|
|
chacl -l file1 | _acl_filter_id
|
2002-02-25 22:39:00 +00:00
|
|
|
echo "Try using single colon separator"
|
|
|
|
|
echo "Note: Old interface FAILed because of single colon - new one allows it"
|
2001-01-15 05:01:19 +00:00
|
|
|
chacl u::r--,g::rwx,o:rw- file1 2>&1
|
|
|
|
|
echo "Expect to PASS"
|
|
|
|
|
chacl u::r--,g::rwx,o::rw- file1 2>&1
|
2001-04-02 00:41:31 +00:00
|
|
|
chacl -l file1 | _acl_filter_id
|
2001-01-15 05:01:19 +00:00
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "--- Test sync of ACL with std permissions ---"
|
2001-04-02 00:41:31 +00:00
|
|
|
_acl_ls file1
|
2001-01-15 05:01:19 +00:00
|
|
|
chmod u+w file1
|
2001-04-02 00:41:31 +00:00
|
|
|
_acl_ls file1
|
|
|
|
|
chacl -l file1 | _acl_filter_id
|
2001-01-15 05:01:19 +00:00
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "--- Test owner permissions ---"
|
|
|
|
|
chacl u::r-x,g::---,o::--- file1 2>&1
|
2001-04-02 00:41:31 +00:00
|
|
|
chacl -l file1 | _acl_filter_id
|
2001-01-15 05:01:19 +00:00
|
|
|
# change to owner
|
|
|
|
|
echo "Expect to PASS"
|
|
|
|
|
$runas -u $acl1 -g $acl1 ./file1 2>&1
|
|
|
|
|
echo "Expect to FAIL"
|
|
|
|
|
$runas -u $acl2 -g $acl2 ./file1 2>&1
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "--- Test group permissions ---"
|
|
|
|
|
chacl u::---,g::r-x,o::--- file1 2>&1
|
2001-04-02 00:41:31 +00:00
|
|
|
chacl -l file1 | _acl_filter_id
|
2001-01-15 05:01:19 +00:00
|
|
|
echo "Expect to FAIL - acl1 is owner"
|
|
|
|
|
$runas -u $acl1 -g $acl1 ./file1 2>&1
|
|
|
|
|
echo "Expect to PASS - acl2 matches group"
|
|
|
|
|
$runas -u $acl2 -g $acl2 ./file1 2>&1
|
|
|
|
|
echo "Expect to PASS - acl2 matches sup group"
|
|
|
|
|
$runas -u $acl2 -g $acl3 -s $acl2 ./file1 2>&1
|
|
|
|
|
echo "Expect to FAIL - acl3 is not in group"
|
|
|
|
|
$runas -u $acl3 -g $acl3 ./file1 2>&1
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "--- Test other permissions ---"
|
|
|
|
|
chacl u::---,g::---,o::r-x file1 2>&1
|
2001-04-02 00:41:31 +00:00
|
|
|
chacl -l file1 | _acl_filter_id
|
2001-01-15 05:01:19 +00:00
|
|
|
echo "Expect to FAIL - acl1 is owner"
|
|
|
|
|
$runas -u $acl1 -g $acl1 ./file1 2>&1
|
|
|
|
|
echo "Expect to FAIL - acl2 is in group"
|
|
|
|
|
$runas -u $acl2 -g $acl2 ./file1 2>&1
|
|
|
|
|
echo "Expect to FAIL - acl2 is in sup. group"
|
|
|
|
|
$runas -u $acl2 -g $acl3 -s $acl2 ./file1 2>&1
|
|
|
|
|
echo "Expect to PASS - acl3 is not owner or in group"
|
|
|
|
|
$runas -u $acl3 -g $acl3 ./file1 2>&1
|
|
|
|
|
|
|
|
|
|
#-------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "=== Test Extended ACLs ==="
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "--- Test adding a USER ACE ---"
|
|
|
|
|
echo "Expect to FAIL as no MASK provided"
|
2001-05-01 01:01:05 +00:00
|
|
|
chacl u::---,g::---,o::---,u:$acl2:r-x file1 2>&1 | _acl_filter_id
|
2001-01-15 05:01:19 +00:00
|
|
|
echo "Ensure that ACL has not been changed"
|
2001-04-02 00:41:31 +00:00
|
|
|
chacl -l file1 | _acl_filter_id
|
2001-01-15 05:01:19 +00:00
|
|
|
echo "Expect to PASS - USER ACE matches user"
|
|
|
|
|
chacl u::---,g::---,o::---,u:$acl2:r-x,m::rwx file1 2>&1
|
2001-04-02 00:41:31 +00:00
|
|
|
chacl -l file1 | _acl_filter_id
|
2001-01-15 05:01:19 +00:00
|
|
|
$runas -u $acl2 -g $acl2 ./file1 2>&1
|
|
|
|
|
echo "Expect to FAIL - USER ACE does not match user"
|
|
|
|
|
$runas -u $acl3 -g $acl3 ./file1 2>&1
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "--- Test adding a GROUP ACE ---"
|
|
|
|
|
echo "Expect to FAIL as no MASK provided"
|
2001-05-01 01:01:05 +00:00
|
|
|
chacl u::---,g::---,o::---,g:$acl2:r-x file1 2>&1 | _acl_filter_id
|
2001-01-15 05:01:19 +00:00
|
|
|
echo "Ensure that ACL has not been changed"
|
2001-04-02 00:41:31 +00:00
|
|
|
chacl -l file1 | _acl_filter_id
|
2001-01-15 05:01:19 +00:00
|
|
|
chacl u::---,g::---,o::---,g:$acl2:r-x,m::rwx file1 2>&1
|
2001-04-02 00:41:31 +00:00
|
|
|
chacl -l file1 | _acl_filter_id
|
2001-01-15 05:01:19 +00:00
|
|
|
echo "Expect to PASS - GROUP ACE matches group"
|
|
|
|
|
$runas -u $acl2 -g $acl2 ./file1 2>&1
|
|
|
|
|
echo "Expect to PASS - GROUP ACE matches sup group"
|
|
|
|
|
$runas -u $acl2 -g $acl1 -s $acl2 ./file1 2>&1
|
|
|
|
|
echo "Expect to FAIL - GROUP ACE does not match group"
|
|
|
|
|
$runas -u $acl3 -g $acl3 ./file1 2>&1
|
|
|
|
|
|
|
|
|
|
#-------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "--- Test MASK ---"
|
2001-02-20 08:07:09 +00:00
|
|
|
|
|
|
|
|
# group
|
|
|
|
|
chacl u::---,g::---,o::---,g:$acl2:r-x,m::-w- file1 2>&1
|
2001-04-02 00:41:31 +00:00
|
|
|
chacl -l file1 | _acl_filter_id
|
2001-01-15 05:01:19 +00:00
|
|
|
echo "Expect to FAIL as MASK prohibits execution"
|
|
|
|
|
$runas -u $acl2 -g $acl2 ./file1 2>&1
|
2001-02-20 08:07:09 +00:00
|
|
|
|
|
|
|
|
# user
|
|
|
|
|
chacl u::---,g::---,o::---,u:$acl2:r-x,m::-w- file1 2>&1
|
2001-01-15 05:01:19 +00:00
|
|
|
echo "Expect to FAIL as MASK prohibits execution"
|
|
|
|
|
$runas -u $acl2 -g $acl2 ./file1 2>&1
|
|
|
|
|
|
2001-02-20 08:07:09 +00:00
|
|
|
# user
|
2001-01-15 05:01:19 +00:00
|
|
|
chacl u::---,g::---,o::---,u:$acl2:r-x,m::r-x file1 2>&1
|
|
|
|
|
echo "Expect to PASS as MASK allows execution"
|
|
|
|
|
$runas -u $acl2 -g $acl2 ./file1 2>&1
|
|
|
|
|
|
|
|
|
|
#-------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "--- Test ACE priority ---"
|
|
|
|
|
|
|
|
|
|
chacl o::rwx,g::rwx,u:$acl1:rwx,u::---,m::rwx file1 2>&1
|
|
|
|
|
echo "Expect to FAIL as should match on owner"
|
|
|
|
|
$runas -u $acl1 -g $acl2 ./file1 2>&1
|
|
|
|
|
|
|
|
|
|
chacl o::---,g::---,u:$acl2:rwx,u::---,m::rwx file1 2>&1
|
|
|
|
|
echo "Expect to PASS as should match on user"
|
|
|
|
|
$runas -u $acl2 -g $acl2 ./file1 2>&1
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
#-------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "=== Test can read ACLs without access permissions ==="
|
|
|
|
|
# This was a bug in kernel code where syscred wasn't being used
|
|
|
|
|
# to override the capabilities
|
|
|
|
|
chacl o::---,g::---,u::--- file1 2>&1
|
2001-04-02 00:41:31 +00:00
|
|
|
chacl -l file1 | _acl_filter_id
|
2001-01-15 05:01:19 +00:00
|
|
|
|
|
|
|
|
#-------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "=== Test Default ACLs ==="
|
2001-04-17 05:16:51 +00:00
|
|
|
# make test clearer by testing with and without umask
|
|
|
|
|
umask 0
|
|
|
|
|
|
2001-01-15 05:01:19 +00:00
|
|
|
mkdir acldir
|
2001-04-02 00:41:31 +00:00
|
|
|
chacl -b "u::rwx,g::rwx,o::rwx" "u::r-x,g::r--,o::---" acldir 2>&1
|
|
|
|
|
chacl -l acldir | _acl_filter_id
|
2001-01-15 05:01:19 +00:00
|
|
|
cd acldir
|
2001-04-17 05:16:51 +00:00
|
|
|
|
2001-01-15 05:01:19 +00:00
|
|
|
touch file2
|
2001-04-02 00:41:31 +00:00
|
|
|
_acl_ls file2
|
|
|
|
|
chacl -l file2 | _acl_filter_id
|
2001-04-17 05:16:51 +00:00
|
|
|
|
|
|
|
|
#ensure that umask is not having an effect
|
|
|
|
|
#so set it and see
|
|
|
|
|
umask 722
|
|
|
|
|
touch file3
|
|
|
|
|
_acl_ls file3
|
|
|
|
|
chacl -l file3 | _acl_filter_id
|
|
|
|
|
|
2001-01-15 05:01:19 +00:00
|
|
|
cd ..
|
2001-04-17 05:16:51 +00:00
|
|
|
umask 022
|
|
|
|
|
|
2001-01-15 05:01:19 +00:00
|
|
|
|
|
|
|
|
#-------------------------------------------------------
|
|
|
|
|
|
2001-04-02 00:41:31 +00:00
|
|
|
echo ""
|
|
|
|
|
echo "=== Removing ACLs ==="
|
|
|
|
|
chacl -l file1 | _acl_filter_id
|
|
|
|
|
chacl -l acldir | _acl_filter_id
|
|
|
|
|
chacl -l acldir/file2 | _acl_filter_id
|
|
|
|
|
echo "Remove ACLs..."
|
|
|
|
|
chacl -R file1
|
|
|
|
|
chacl -B acldir
|
|
|
|
|
chacl -R acldir/file2
|
2002-02-25 22:39:00 +00:00
|
|
|
echo "Note: Old interface would mean empty ACLs - now we show mode ACLs"
|
2001-04-02 00:41:31 +00:00
|
|
|
chacl -l file1 | _acl_filter_id
|
|
|
|
|
chacl -l acldir | _acl_filter_id
|
|
|
|
|
chacl -l acldir/file2 | _acl_filter_id
|
|
|
|
|
|
2001-07-23 08:27:49 +00:00
|
|
|
|
2001-04-02 00:41:31 +00:00
|
|
|
#-------------------------------------------------------
|
|
|
|
|
|
2001-07-23 08:27:49 +00:00
|
|
|
echo ""
|
|
|
|
|
echo "=== Recursive change ACL ==="
|
|
|
|
|
rm -fr root
|
|
|
|
|
mkdir root
|
2001-07-23 22:06:20 +00:00
|
|
|
pushd root >/dev/null
|
2001-07-23 08:27:49 +00:00
|
|
|
# create an arbitrary little tree
|
|
|
|
|
for i in 1 2 3 4 5 6 7 8 9 0
|
|
|
|
|
do
|
|
|
|
|
mkdir -p a/$i
|
|
|
|
|
mkdir -p b/c$i/$i
|
|
|
|
|
touch a/$i/mumble
|
|
|
|
|
done
|
2001-07-23 22:06:20 +00:00
|
|
|
popd >/dev/null
|
2001-07-23 08:27:49 +00:00
|
|
|
chown -R 12345.54321 root
|
|
|
|
|
echo "Change #1..."
|
2002-02-25 22:39:52 +00:00
|
|
|
$runas -u 12345 -g 54321 -- `which chacl` -r u::rwx,g::-w-,o::--x root
|
2001-07-23 08:27:49 +00:00
|
|
|
find root -print | xargs chacl -l
|
|
|
|
|
echo "Change #2..."
|
2002-02-25 22:39:52 +00:00
|
|
|
$runas -u 12345 -g 54321 -- `which chacl` -r u::---,g::---,o::--- root
|
2001-07-23 08:27:49 +00:00
|
|
|
find root -print | xargs chacl -l
|
2001-04-02 00:41:31 +00:00
|
|
|
|
|
|
|
|
|
2001-08-24 05:51:02 +00:00
|
|
|
#-------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "=== Test out error messages for ACL text parsing ==="
|
2002-02-25 22:39:00 +00:00
|
|
|
echo "Note: Old interface gave more informative error msgs"
|
2001-08-24 05:51:02 +00:00
|
|
|
|
|
|
|
|
touch file1
|
|
|
|
|
set -x
|
|
|
|
|
chacl u file1
|
|
|
|
|
chacl u: file1
|
|
|
|
|
chacl u:rumpledumpleunknownuser file1
|
|
|
|
|
chacl u:rumpledumpleunknownuser: file1
|
|
|
|
|
chacl g:rumpledumpleunknowngrp file1
|
|
|
|
|
chacl g:rumpledumpleunknowngrp: file1
|
|
|
|
|
chacl o:user1:rwx file1
|
|
|
|
|
chacl m:user1:rwx file1
|
|
|
|
|
chacl a::rwx file1
|
|
|
|
|
set +x
|
|
|
|
|
|
2002-05-08 04:29:55 +00:00
|
|
|
#-------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
echo ""
|
|
|
|
|
echo "=== Test out large ACLs ==="
|
|
|
|
|
touch largeaclfile
|
|
|
|
|
XFS_ACL_MAX_ENTRIES=25
|
|
|
|
|
num_aces_pre=`expr $XFS_ACL_MAX_ENTRIES - 1`
|
|
|
|
|
num_aces_post=`expr $XFS_ACL_MAX_ENTRIES + 1`
|
|
|
|
|
|
|
|
|
|
acl1=`_create_n_aces $num_aces_pre`
|
|
|
|
|
acl2=`_create_n_aces $XFS_ACL_MAX_ENTRIES`
|
|
|
|
|
acl3=`_create_n_aces $num_aces_post`
|
|
|
|
|
acl4=`_create_n_aces 16` # Andreas G. libacl size for initial get
|
|
|
|
|
acl5=`_create_n_aces 17` # 1 over A.G. libacl initial size
|
2001-08-24 05:51:02 +00:00
|
|
|
|
2002-05-08 04:29:55 +00:00
|
|
|
echo "1 below xfs acl max"
|
|
|
|
|
chacl $acl1 largeaclfile
|
|
|
|
|
getfacl largeaclfile | _filter_aces
|
|
|
|
|
|
|
|
|
|
echo "xfs acl max"
|
|
|
|
|
chacl $acl2 largeaclfile
|
|
|
|
|
getfacl largeaclfile | _filter_aces
|
|
|
|
|
|
|
|
|
|
echo "1 above xfs acl max"
|
|
|
|
|
chacl $acl3 largeaclfile
|
|
|
|
|
getfacl largeaclfile | _filter_aces
|
|
|
|
|
|
|
|
|
|
echo "use 16 aces"
|
|
|
|
|
chacl $acl4 largeaclfile
|
|
|
|
|
getfacl largeaclfile | _filter_aces
|
|
|
|
|
|
|
|
|
|
echo "use 17 aces"
|
|
|
|
|
chacl $acl5 largeaclfile
|
|
|
|
|
getfacl largeaclfile | _filter_aces
|
2001-08-24 05:51:02 +00:00
|
|
|
|
2001-07-23 08:27:49 +00:00
|
|
|
#-------------------------------------------------------
|
2001-04-02 00:41:31 +00:00
|
|
|
|
2001-01-15 05:01:19 +00:00
|
|
|
# success, all done
|
|
|
|
|
status=0
|
|
|
|
|
exit
|