components/ruby/puppet-modules/openstack-heat/patches/03-init.patch
changeset 5464 6e2e17e6aa45
child 5860 afd31ba91ee9
equal deleted inserted replaced
5463:245bdc05448a 5464:6e2e17e6aa45
       
     1 In-house patch to add support for Solaris 11.3 and 12.0.  This patch
       
     2 has been submitted and is in new versions of this module.
       
     3 
       
     4 --- openstack-heat-6.1.0/manifests/init.pp.orig	2015-05-29 10:15:21.653268994 -0600
       
     5 +++ openstack-heat-6.1.0/manifests/init.pp	2015-05-29 10:15:55.528819621 -0600
       
     6 @@ -265,30 +265,12 @@ class heat(
       
     7      require => Package['heat-common'],
       
     8    }
       
     9  
       
    10 -  group { 'heat':
       
    11 -    name    => 'heat',
       
    12 -    require => Package['heat-common'],
       
    13 -  }
       
    14 -
       
    15 -  user { 'heat':
       
    16 -    name    => 'heat',
       
    17 -    gid     => 'heat',
       
    18 -    groups  => ['heat'],
       
    19 -    system  => true,
       
    20 -    require => Package['heat-common'],
       
    21 -  }
       
    22 -
       
    23    file { '/etc/heat/':
       
    24      ensure => directory,
       
    25 -    owner  => 'heat',
       
    26 -    group  => 'heat',
       
    27 -    mode   => '0750',
       
    28    }
       
    29  
       
    30    file { '/etc/heat/heat.conf':
       
    31 -    owner => 'heat',
       
    32 -    group => 'heat',
       
    33 -    mode  => '0640',
       
    34 +    ensure => present,
       
    35    }
       
    36  
       
    37    package { 'heat-common':