Merge "Balance Rabbitmq Queue Master Location on queue declaration with min-masters...
[apex-tripleo-heat-templates.git] / extraconfig / tasks / yum_update.yaml
1 heat_template_version: 2014-10-16
2
3 description: >
4   Software-config for performing package updates using yum
5
6 resources:
7
8   config:
9     type: OS::Heat::SoftwareConfig
10     properties:
11       group: script
12       config: {get_file: yum_update.sh}
13       inputs:
14       - name: update_identifier
15         description: yum will only run for previously unused values of update_identifier
16         default: ''
17       - name: command
18         description: yum sub-command to run, defaults to "update"
19         default: update
20       - name: command_arguments
21         description: yum command arguments, defaults to ""
22         default: ''
23       outputs:
24       - name: update_managed_packages
25         description: boolean value indicating whether to upgrade managed packages
26
27 outputs:
28   OS::stack_id:
29     value: {get_resource: config}