components/ruby/puppet/files/solaris/lib/puppet/type/boot_environment.rb
branchs11u2-sru
changeset 3460 5c5af6e58474
parent 2771 8e4227dc2fc4
equal deleted inserted replaced
3457:6358358b4186 3460:5c5af6e58474
       
     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 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/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 (c) 2013, Oracle and/or its affiliates. All rights reserved.
       
    24 #
       
    25 
       
    26 Puppet::Type.newtype(:boot_environment) do
       
    27     @doc = "Manage Oracle Solaris Boot Environments (BEs)"
       
    28 
       
    29     ensurable
       
    30 
       
    31     newparam(:name) do
       
    32         desc "The BE name"
       
    33         validate do |value|
       
    34             raise Puppet::Error, "Invalid BE name:  #{value}" unless
       
    35                 value =~ /^[\d\w\.\-\:\_]+$/
       
    36         end
       
    37         isnamevar
       
    38     end
       
    39 
       
    40     newparam(:description) do
       
    41         desc "Description for the new BE"
       
    42     end
       
    43 
       
    44     newparam(:clone_be) do
       
    45         desc "Create a new BE from an existing inactive BE"
       
    46     end
       
    47 
       
    48     newparam(:options) do
       
    49         desc "Create the datasets for a new BE with specific ZFS
       
    50               properties.  Specify options as a hash."
       
    51     end
       
    52 
       
    53     newparam(:zpool) do
       
    54         desc "Create the new BE in the specified zpool"
       
    55     end
       
    56 
       
    57     newproperty(:activate) do
       
    58         desc "Activate the specified BE"
       
    59         newvalues(:true, :false)
       
    60     end
       
    61 end