xref: /freebsd/tests/sys/cddl/zfs/tests/acl/setup.ksh (revision d0b2dbfa)
1#!/usr/local/bin/ksh93 -p
2#
3# CDDL HEADER START
4#
5# The contents of this file are subject to the terms of the
6# Common Development and Distribution License (the "License").
7# You may not use this file except in compliance with the License.
8#
9# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
10# or http://www.opensolaris.org/os/licensing.
11# See the License for the specific language governing permissions
12# and limitations under the License.
13#
14# When distributing Covered Code, include this CDDL HEADER in each
15# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
16# If applicable, add the following below this CDDL HEADER, with the
17# fields enclosed by brackets "[]" replaced with your own identifying
18# information: Portions Copyright [yyyy] [name of copyright owner]
19#
20# CDDL HEADER END
21#
22
23#
24# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
25# Use is subject to license terms.
26#
27# ident	"@(#)setup.ksh	1.2	07/01/09 SMI"
28#
29
30. $STF_SUITE/include/libtest.kshlib
31. $STF_SUITE/tests/acl/acl_common.kshlib
32
33
34# check svc:/network/nis/client:default state
35# disable it if the state is ON
36# and the state will be restored during cleanup.ksh
37if [[ `$UNAME -s` != "FreeBSD" ]]; then
38	log_must $RM -f $NISSTAFILE
39	if [[ "ON" == $($SVCS -H -o sta svc:/network/nis/client:default) ]]; then
40	    log_must $SVCADM disable -t svc:/network/nis/client:default
41	    log_must $TOUCH $NISSTAFILE
42	fi
43fi
44
45cleanup_user_group
46
47# Add wheel group user
48log_must add_user wheel $ZFS_ACL_ADMIN
49
50# Create staff group and add two user to it
51log_must add_group $ZFS_ACL_STAFF_GROUP
52log_must add_user $ZFS_ACL_STAFF_GROUP $ZFS_ACL_STAFF1
53log_must add_user $ZFS_ACL_STAFF_GROUP $ZFS_ACL_STAFF2
54
55# Create other group and add two user to it
56log_must add_group $ZFS_ACL_OTHER_GROUP
57log_must add_user $ZFS_ACL_OTHER_GROUP $ZFS_ACL_OTHER1
58log_must add_user $ZFS_ACL_OTHER_GROUP $ZFS_ACL_OTHER2
59
60DISK=${DISKS%% *}
61default_setup_noexit $DISK
62log_must $CHMOD 777 $TESTDIR
63
64log_pass
65