Name Date Size #Lines LOC

..17-Apr-2024-

README.configH A D14-Aug-20222.1 KiB6864

README.stateH A D14-Aug-20224.3 KiB110106

cleanup.kshH A D14-Aug-20221 KiB363

config001.cfgH A D14-Aug-20221.1 KiB3430

config002.cfgH A D14-Aug-20221.1 KiB3430

config003.cfgH A D14-Aug-20221.1 KiB3430

config004.cfgH A D14-Aug-20221.1 KiB3430

config005.cfgH A D14-Aug-20221.1 KiB3430

config006.cfgH A D14-Aug-20221.1 KiB3430

config007.cfgH A D14-Aug-20221.1 KiB3430

config008.cfgH A D14-Aug-20221.1 KiB3430

config009.cfgH A D14-Aug-20221.1 KiB3430

config010.cfgH A D14-Aug-20221.1 KiB3430

config011.cfgH A D14-Aug-20221.1 KiB3430

config012.cfgH A D14-Aug-20221.1 KiB3430

config013.cfgH A D14-Aug-20221.1 KiB3430

config014.cfgH A D14-Aug-20221.1 KiB3430

config015.cfgH A D14-Aug-20221.1 KiB3430

config016.cfgH A D14-Aug-20221.1 KiB3430

config017.cfgH A D14-Aug-20221.1 KiB3430

config018.cfgH A D14-Aug-20221.1 KiB3430

config019.cfgH A D14-Aug-20221.1 KiB3430

config020.cfgH A D14-Aug-20221.1 KiB3430

config021.cfgH A D14-Aug-20221.1 KiB3430

config022.cfgH A D14-Aug-20221.1 KiB3430

config023.cfgH A D14-Aug-20221.1 KiB3430

config024.cfgH A D14-Aug-20221.1 KiB3430

inherit.kshlibH A D14-Aug-20223 KiB10945

inherit_001_pos.kshH A D17-Nov-202211.4 KiB453246

state001.cfgH A D14-Aug-20221.4 KiB4541

state002.cfgH A D14-Aug-20221.4 KiB4642

state003.cfgH A D14-Aug-20221.3 KiB4440

state004.cfgH A D14-Aug-20221.4 KiB4541

state005.cfgH A D14-Aug-20221.4 KiB4642

state006.cfgH A D14-Aug-20221.5 KiB4844

state007.cfgH A D14-Aug-20221.3 KiB4642

state008.cfgH A D14-Aug-20221.3 KiB4541

state009.cfgH A D14-Aug-20221.4 KiB5854

state010.cfgH A D14-Aug-20221.4 KiB5753

state011.cfgH A D14-Aug-20221.5 KiB5955

state012.cfgH A D14-Aug-20221.7 KiB6359

state013.cfgH A D14-Aug-20221.5 KiB5753

state014.cfgH A D14-Aug-20221.7 KiB6359

state015.cfgH A D14-Aug-20222 KiB6763

state016.cfgH A D14-Aug-20221.7 KiB6359

state017.cfgH A D14-Aug-20222 KiB6864

state018.cfgH A D14-Aug-20221.8 KiB6561

state019.cfgH A D14-Aug-20221.7 KiB6460

state020.cfgH A D14-Aug-20221.7 KiB6561

state021.cfgH A D14-Aug-20221.7 KiB6561

state022.cfgH A D14-Aug-20221.7 KiB6460

state023.cfgH A D14-Aug-20221.7 KiB6662

state024.cfgH A D14-Aug-20221.7 KiB6460

README.config

1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or https://opensource.org/licenses/CDDL-1.0.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26# The configX.cfg files describe both the dataset hierarchy to
27# be created but also the initial source values for the datasets
28# properties, i.e. whether they should be left with their default values
29# or set locally.
30#
31# Format for this file is as follows:
32#	<dataset name>	<dataset type> 	<initial property setting>
33#
34# <dataset name> - must be the full dataset name
35#
36# <dataset type> - recognised types are POOL, CTR and FS
37#
38#
39# <initial property setting> - can have one of the following
40# values:
41#
42#	default		property values are left unchanged
43#
44#	local		property values are set locally
45#
46#	  -		property values are left unchanged (has the
47#			same effect as 'default' but is used to indicate
48#			that the property 'source' field may be 'inherited
49#			from..' depending on the actions further up the
50#			dataset hierarchy.
51#
52#
53# The configuration below creates a three tier dataset layout, consisting
54# of a pool, container and filesystem.
55#
56# The top tier pool's properties being set locally, and the two
57# lower tier properties each inheriting their values from the next tier
58# up.
59#
60
61#
62# Copyright (c) 2013 by Delphix. All rights reserved.
63#
64
65TESTPOOL                        POOL    local
66TESTPOOL/TESTCTR                CTR     -
67TESTPOOL/TESTCTR/TESTFS1        FS      -
68

README.state

1#
2# CDDL HEADER START
3#
4# The contents of this file are subject to the terms of the
5# Common Development and Distribution License (the "License").
6# You may not use this file except in compliance with the License.
7#
8# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
9# or https://opensource.org/licenses/CDDL-1.0.
10# See the License for the specific language governing permissions
11# and limitations under the License.
12#
13# When distributing Covered Code, include this CDDL HEADER in each
14# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
15# If applicable, add the following below this CDDL HEADER, with the
16# fields enclosed by brackets "[]" replaced with your own identifying
17# information: Portions Copyright [yyyy] [name of copyright owner]
18#
19# CDDL HEADER END
20#
21
22#
23# Copyright 2007 Sun Microsystems, Inc.  All rights reserved.
24# Use is subject to license terms.
25#
26#
27# For every configX.cfg file there must be a corresponding stateX.cfg
28# file. The state file both drives the operations to be performed on the
29# dataset hierarchy which has been specified by the corresponding
30# configX.cfg file, and also specifies the expected state of the
31# properties after the operation has been completed.
32#
33# The format of the file is:
34#       <target dataset>:<command>
35#       <property source before command>        <property src after command>
36#       <property source before command>        <property src after command>
37#       ....                                    ....
38#       ....                                    ....
39#
40# <target dataset> - dataset upon which the <command> is to be executed. Can
41#                    be any of the datasets specified in the corresponding
42#                    configX.cfg file. If no command is to be executed
43#                    then must be set to '-'
44#
45#
46# <command>        - command to be executed upon the specified dataset.
47#                    Currently the only supported commands are 'inherit'
48#                    or 'inherit -r'. If no command is to be executed,
49#                    then must be set to '-'.
50#
51# <property src before command>
52#                  - the 'source' (as reported in 'zfs get') for the
53#                    the properties before <command> is executed. This
54#                    can be 'default', 'local' or the name of a dataset
55#                    from which the property is inherited. (The code
56#                    automatically adds in the 'inherited from..' part
57#                    of the string when doing the check.
58#
59#                    This field is for informational purposes only, to
60#                    aid the user in seeing how the changes trickle down
61#                    the data hierarchy.
62#
63# <property src after command>
64#                  - the expected value of the 'source' field after the
65#                    <command> has been executed on the <target dataset>.
66#                    As above can be 'default', 'local', or the dataset
67#                    from which the property is inherited.
68#
69# Two important things to note:
70# 1) there must be a <property src..> line corresponding to each dataset
71#    line specified in the configX.cfg file.
72#
73#
74# 2) There can be as many <command>/<property src> blocks as desired, but
75#    there must be at least one, and the effect of each block is cumulative
76#    (i.e. the properties are not reset back to their default values between
77#    each block. If that is desired then each block must be placed in its
78#    own state file with its own corresponding configX.cfg file).
79#
80#
81# Below are two sample <command>/<property src> blocks.
82#
83# The first simply verifies that the properties on the top level dataset
84# were set locally, and that the middle and bottom datasets properties
85# were inherited from the top level pool (called TESTPOOL). Note the '-:-'
86# which means that no command is to be executed, but simply that the
87# properties settings are to be verified.
88#
89
90#
91# Copyright (c) 2013 by Delphix. All rights reserved.
92#
93
94-:-
95#
96local                           local
97TESTPOOL                        TESTPOOL
98TESTPOOL                        TESTPOOL
99#
100#
101# The block below describes the expected state of the properties after
102# an 'inherit -r' command has been run on the top level pool (called
103# TESTPOOL).
104#
105TESTPOOL:inherit -r
106#
107local				default
108TESTPOOL			default
109TESTPOOL			default
110