0a0e2ee629
Master is now the development branch for pike changing the release alias name. Change-Id: I938e4a983e361aefcaa0bd9a4226c296c5823127
30 lines
837 B
YAML
30 lines
837 B
YAML
heat_template_version: pike
|
|
description: 'No-op yum update task'
|
|
|
|
resources:
|
|
|
|
config:
|
|
type: OS::Heat::SoftwareConfig
|
|
properties:
|
|
group: script
|
|
config: |
|
|
#!/bin/bash
|
|
echo -n "false" > $heat_outputs_path.update_managed_packages
|
|
inputs:
|
|
- name: update_identifier
|
|
description: yum will only run for previously unused values of update_identifier
|
|
default: ''
|
|
- name: command
|
|
description: yum sub-command to run, defaults to "update"
|
|
default: update
|
|
- name: command_arguments
|
|
description: yum command arguments, defaults to ""
|
|
default: ''
|
|
outputs:
|
|
- name: update_managed_packages
|
|
description: boolean value indicating whether to upgrade managed packages
|
|
|
|
outputs:
|
|
OS::stack_id:
|
|
value: {get_resource: config}
|