tripleo-heat-templates/deployed-server/deployed-server-bootstrap-rhel.yaml
James Slagle 5461971b7e Add deployed server bootstrap for RHEL
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
2017-01-26 15:06:46 -05:00

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}