5461971b7e
This is similar to the bootstrap for CentOS, except we don't set SELinux to permissive on RHEL. Change-Id: I52b8fa017ee2821d2fa91e5ec806a55fcb92566d Partially-implements: blueprint split-stack-software-configuration
23 lines
483 B
YAML
23 lines
483 B
YAML
heat_template_version: ocata
|
|
|
|
description: 'Deployed Server Bootstrap Config'
|
|
|
|
parameters:
|
|
|
|
server:
|
|
type: string
|
|
|
|
resources:
|
|
|
|
DeployedServerBootstrapConfig:
|
|
type: OS::Heat::SoftwareConfig
|
|
properties:
|
|
group: script
|
|
config: {get_file: deployed-server-bootstrap-rhel.sh}
|
|
|
|
DeployedServerBootstrapDeployment:
|
|
type: OS::Heat::SoftwareDeployment
|
|
properties:
|
|
config: {get_resource: DeployedServerBootstrapConfig}
|
|
server: {get_param: server}
|