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/CDDL.txt
9 # or http://www.opensolaris.org/os/licensing.
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/CDDL.txt.
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 # ident "%Z%%M% %I% %E% SMI"
27 #
28 # This file will be sourced in by sczbt_register and the parameters
29 # listed below will be used.
30 #
31 # These parameters can be customized in (key=value) form
32 #
33 # RS - Name of the resource
34 # RG - Name of the resource group containing RS
35 # PARAMETERDIR - Name of the parameter file direcrory
36 # SC_NETWORK - Identfies if SUNW.LogicalHostname will be used
37 # true = zone will use SUNW.LogicalHostname
38 # false = zone will use it's own configuration
39 #
40 # NOTE: If the ip-type keyword for the non-global zone is set
41 # to "exclusive", only "false" is allowed for SC_NETWORK
42 #
43 # The configuration of a zone's network addresses depends on
44 # whether you require IPMP protection or protection against
45 # the failure of all physical interfaces.
46 #
47 # If you require only IPMP protection, configure the zone's
48 # addresses by using the zonecfg utility and then place the
49 # zone's address in an IPMP group.
50 #
51 # To configure this option set
52 # SC_NETWORK=false
53 # SC_LH=
54 #
55 # If IPMP protection is not required, just configure the
56 # zone's addresses by using the zonecfg utility.
57 #
58 # To configure this option set
59 # SC_NETWORK=false
60 # SC_LH=
61 #
62 # If you require protection against the failure of all physical
63 # interfaces, choose one option from the following list.
64 #
65 # - If you want the SUNW.LogicalHostName resource type to manage
66 # the zone's addresses, configure a SUNW.LogicalHostName
67 # resource with at least one of the zone's addresses.
68 #
69 # To configure this option set
70 # SC_NETWORK=true
71 # SC_LH=<Name of the SC Logical Hostname resource>
72 #
73 # - Otherwise, configure the zone's addresses by using the
74 # zonecfg utility and configure a redundant IP address
75 # for use by a SUNW.LogicalHostName resource.
76 #
77 # To configure this option set
78 # SC_NETWORK=false
79 # SC_LH=<Name of the SC Logical Hostname resource>
80 #
81 # Whichever option is chosen, multiple zone addresses can be
82 # used either in the zone's configuration or using several
83 # SUNW.LogicalHostname resources.
84 #
85 # e.g. SC_NETWORK=true
86 # SC_LH=zone1-lh1,zone1-lh2
87 #
88 # SC_LH - Name of the SC Logical Hostname resource
89 # FAILOVER - Identifies if the zone's zone path is on a
90 # highly available local file system
91 #
92 # e.g. FAILOVER=true - highly available local file system
93 # FAILOVER=false - local file system
94 #
95 # HAS_RS - Name of the HAStoragePlus SC resource
96 #
97
98 RS=
99 RG=
100 PARAMETERDIR=
101 SC_NETWORK=
102 SC_LH=
103 FAILOVER=
104 HAS_RS=
105
106 #
107 # The following variable will be placed in the parameter file
108 #
109 # Parameters for sczbt (Zone Boot)
110 #
111 # Zonename Name of the zone
112 # Zonebrand Brand of the zone. Current supported options are
113 # "native" (default), "lx" or "solaris8"
114 # Zonebootopt Zone boot options ("-s" requires that Milestone=single-user)
115 # Milestone SMF Milestone which needs to be online before the zone is
116 # considered booted. This option is only used for the
117 # "native" Zonebrand.
118 # LXrunlevel Runlevel which needs to get reached before the zone is
119 # considered booted. This option is only used for the "lx"
120 # Zonebrand.
121 # SLrunlevel Solaris legacy runlevel which needs to get reached before the
122 # zone is considered booted. This option is only used for the
123 # "solaris8" Zonebrand.
124 # Mounts Mounts is a list of directories and their mount options,
125 # which are loopback mounted from the global zone into the
126 # newly booted zone. The mountpoint in the local zone can
127 # be different to the mountpoint from the global zone.
128 #
129 # The Mounts parameter format is as follows,
130 #
131 # Mounts="/<global zone directory>:/<local zone directory>:<mount options>"
132 #
133 # The following are valid examples for the "Mounts" variable
134 #
135 # Mounts="/globalzone-dir1:/localzone-dir1:rw"
136 # Mounts="/globalzone-dir1:/localzone-dir1:rw /globalzone-dir2:rw"
137 #
138 # The only required entry is the /<global zone directory>, the
139 # /<local zone directory> and <mount options> can be omitted.
140 #
141 # Omitting /<local zone directory> will make the local zone
142 # mountpoint the same as the global zone directory.
143 #
144 # Omitting <mount options> will not provide any mount options
145 # except the default options from the mount command.
146 #
147 # Note: You must manually create any local zone mountpoint
148 # directories that will be used within the Mounts variable,
149 # before registering this resource within Sun Cluster.
150 #
151
152 Zonename=""
153 Zonebrand="native"
154 Zonebootopt=""
155 Milestone="multi-user-server"
156 LXrunlevel="3"
157 SLrunlevel="3"
158 Mounts=""
--- EOF ---