Skip to content

Commit aa35244

Browse files
committed
oraswgi_golden_image: Fixed wrong varible names oraswgi_golen_* to oraswgi_golden_* from breaking change #383
1 parent d111970 commit aa35244

File tree

4 files changed

+16
-13
lines changed

4 files changed

+16
-13
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
---
2+
breaking_changes:
3+
- "oraswgi_golden_image: Fixed wrong varible names oraswgi_golen_* to oraswgi_golden_* from breaking change oravirt#383 ()"

roles/oraswgi_golden_image/README.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ Create Golden-Images from Oracle Grid-Infrastructure/Restart
77
- [Requirements](#requirements)
88
- [Default Variables](#default-variables)
99
- [golden_image_dest](#golden_image_dest)
10+
- [oraswgi_golden_image_create](#oraswgi_golden_image_create)
1011
- [oraswgi_golden_image_filename](#oraswgi_golden_image_filename)
11-
- [oraswgi_golen_image_create](#oraswgi_golen_image_create)
1212
- [Discovered Tags](#discovered-tags)
1313
- [Dependencies](#dependencies)
1414
- [License](#license)
@@ -29,27 +29,27 @@ Set destination directory for Golden-Image extraction.
2929

3030
Variable has no default value.
3131

32-
### oraswgi_golden_image_filename
32+
### oraswgi_golden_image_create
3333

34-
Filename of created Image archive.
34+
Crfeate Golden-Image for Grid-Infrastructure/Restart.
3535

3636
#### Default value
3737

3838
```YAML
39-
oraswgi_golden_image_filename: >-
40-
{% if oracle_install_option_gi == 'CRS_CONFIG' -%}
41-
gi_{% else %}restart_{% endif %}{{ oracle_install_version_gi | split('.') | first
42-
}}.zip
39+
oraswgi_golden_image_create: false
4340
```
4441
45-
### oraswgi_golen_image_create
42+
### oraswgi_golden_image_filename
4643
47-
Crfeate Golden-Image for Grid-Infrastructure/Restart.
44+
Filename of created Image archive.
4845
4946
#### Default value
5047
5148
```YAML
52-
oraswgi_golen_image_create: false
49+
oraswgi_golden_image_filename: >-
50+
{% if oracle_install_option_gi == 'CRS_CONFIG' -%}
51+
gi_{% else %}restart_{% endif %}{{ oracle_install_version_gi | split('.') | first
52+
}}.zip
5353
```
5454
5555
## Discovered Tags

roles/oraswgi_golden_image/defaults/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@
55
# Variable has no default value.
66
# @end
77

8-
# @var oraswgi_golen_image_create:description: >
8+
# @var oraswgi_golden_image_create:description: >
99
# Crfeate Golden-Image for Grid-Infrastructure/Restart.
1010
# @end
11-
oraswgi_golen_image_create: false
11+
oraswgi_golden_image_create: false
1212

1313
# @var oraswgi_golden_image_filename:description: >
1414
# Filename of created Image archive.

roles/oraswgi_golden_image/tasks/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
become_user: "{{ oracle_user }}"
1212
when:
1313
- oracle_home_gi is defined
14-
- oraswgi_golen_image_create | bool
14+
- oraswgi_golden_image_create | bool
1515
tags:
1616
- golden_image_gi
1717
block:

0 commit comments

Comments
 (0)