12fae26bdSAlan Somers#
22fae26bdSAlan Somers# CDDL HEADER START
32fae26bdSAlan Somers#
42fae26bdSAlan Somers# The contents of this file are subject to the terms of the
52fae26bdSAlan Somers# Common Development and Distribution License (the "License").
62fae26bdSAlan Somers# You may not use this file except in compliance with the License.
72fae26bdSAlan Somers#
82fae26bdSAlan Somers# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
92fae26bdSAlan Somers# or http://www.opensolaris.org/os/licensing.
102fae26bdSAlan Somers# See the License for the specific language governing permissions
112fae26bdSAlan Somers# and limitations under the License.
122fae26bdSAlan Somers#
132fae26bdSAlan Somers# When distributing Covered Code, include this CDDL HEADER in each
142fae26bdSAlan Somers# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
152fae26bdSAlan Somers# If applicable, add the following below this CDDL HEADER, with the
162fae26bdSAlan Somers# fields enclosed by brackets "[]" replaced with your own identifying
172fae26bdSAlan Somers# information: Portions Copyright [yyyy] [name of copyright owner]
182fae26bdSAlan Somers#
192fae26bdSAlan Somers# CDDL HEADER END
202fae26bdSAlan Somers#
212fae26bdSAlan Somers
222fae26bdSAlan Somers#
232fae26bdSAlan Somers# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
242fae26bdSAlan Somers# Use is subject to license terms.
252fae26bdSAlan Somers# The configX.cfg files describe both the dataset hierarchy to
262fae26bdSAlan Somers# be created but also the initial source values for the datasets
272fae26bdSAlan Somers# properties, i.e. whether they should be left with their default values
282fae26bdSAlan Somers# or set locally.
292fae26bdSAlan Somers#
302fae26bdSAlan Somers# Format for this file is as follows:
312fae26bdSAlan Somers#	<dataset name>	<dataset type> 	<inital property setting>
322fae26bdSAlan Somers#
332fae26bdSAlan Somers# <dataset name> - must be the full dataset name
342fae26bdSAlan Somers#
352fae26bdSAlan Somers# <dataset type> - recognised types are POOL, CTR and FS
362fae26bdSAlan Somers#
372fae26bdSAlan Somers#
382fae26bdSAlan Somers# <initial property setting> - can have one of the following
392fae26bdSAlan Somers# values:
402fae26bdSAlan Somers#
412fae26bdSAlan Somers#	default		property values are left unchanged
422fae26bdSAlan Somers#
432fae26bdSAlan Somers#	local		property values are set locally
442fae26bdSAlan Somers#
452fae26bdSAlan Somers#	  -		property values are left unchanged (has the
462fae26bdSAlan Somers#			same effect as 'default' but is used to indicate
472fae26bdSAlan Somers#			that the property 'source' field may be 'inherited
482fae26bdSAlan Somers#			from..' depending on the actions further up the
492fae26bdSAlan Somers#			dataset hierarchy.
502fae26bdSAlan Somers#
512fae26bdSAlan Somers#
522fae26bdSAlan Somers# The configuration below creates a three tier dataset layout, consisting
532fae26bdSAlan Somers# of a pool, container and filesystem.
542fae26bdSAlan Somers#
552fae26bdSAlan Somers# The top tier pool's properties being set locally, and the two
562fae26bdSAlan Somers# lower tier properties each inheriting their values from the next tier
572fae26bdSAlan Somers# up.
582fae26bdSAlan Somers#
592fae26bdSAlan SomersTESTPOOL                        POOL    local
602fae26bdSAlan SomersTESTPOOL/TESTCTR                CTR     -
612fae26bdSAlan SomersTESTPOOL/TESTCTR/TESTFS1        FS      -
62