Bump template version for all templates to "ocata"
[apex-tripleo-heat-templates.git] / extraconfig / tasks / yum_update.yaml
1 heat_template_version: ocata
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:
13         list_join:
14         - ''
15         - - get_file: pacemaker_common_functions.sh
16           - get_file: yum_update.sh
17
18       inputs:
19       - name: update_identifier
20         description: yum will only run for previously unused values of update_identifier
21         default: ''
22       - name: command
23         description: yum sub-command to run, defaults to "update"
24         default: update
25       - name: command_arguments
26         description: yum command arguments, defaults to ""
27         default: ''
28       outputs:
29       - name: update_managed_packages
30         description: boolean value indicating whether to upgrade managed packages
31
32 outputs:
33   OS::stack_id:
34     value: {get_resource: config}