mirror of
https://github.com/ansible-collections/community.general.git
synced 2026-05-02 11:22:47 +00:00
Update debconf example (#33397)
'true' needs to be quoted as a string, otherwise it is stored as boolean and ends up getting capitalized to 'True' when presented to debconf
Subsequent install of oracle-java8-installer fails with "oracle-license-v1-1 license could not be presented"
ansible version: 2.3.1.0
Actual: value: true
debconf-show oracle-java8-installer
* shared/accepted-oracle-license-v1-1: True
Expected: value: 'true'
debconf-show oracle-java8-installer
* shared/accepted-oracle-license-v1-1: true
This commit is contained in:
committed by
Jordan Borean
parent
dbc60e7b91
commit
3a3a63ce46
@@ -73,7 +73,7 @@ EXAMPLES = '''
|
||||
debconf:
|
||||
name: oracle-java7-installer
|
||||
question: shared/accepted-oracle-license-v1-1
|
||||
value: true
|
||||
value: 'true'
|
||||
vtype: select
|
||||
|
||||
- name: Specifying package you can register/return the list of questions and current values
|
||||
|
||||
Reference in New Issue
Block a user