Puppet Class: openstack::cinder::bootstrap
- Defined in:
- modules/openstack/manifests/cinder/bootstrap.pp
Overview
SPDX-License-Identifier: Apache-2.0
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'modules/openstack/manifests/cinder/bootstrap.pp', line 2
class openstack::cinder::bootstrap {
file {'/etc/cinder/bootstrap':
ensure => 'directory',
owner => 'root',
group => 'root',
mode => '0655',
}
file { '/etc/cinder/bootstrap/seed.sh':
owner => 'cinder',
group => 'cinder',
mode => '0544',
content => template('openstack/bootstrap/cinder/cinder_seed.sh.erb'),
require => File['/etc/cinder/bootstrap'],
}
}
|