The below requirements are needed on the host that executes this module.
Parameter | Choices/Defaults | Comments |
---|---|---|
name
string
/ required
|
Name of package to configure.
aliases: pkg |
|
question
string
|
A debconf configuration setting.
aliases: selection, setting |
|
unseen
boolean
|
|
Do not set 'seen' flag when pre-seeding.
|
value
string
|
Value to set the configuration to.
aliases: answer |
|
vtype
string
|
|
The type of the value supplied.
seen was added in Ansible 2.2. |
Note
- name: Set default locale to fr_FR.UTF-8
debconf:
name: locales
question: locales/default_environment_locale
value: fr_FR.UTF-8
vtype: select
- name: set to generate locales
debconf:
name: locales
question: locales/locales_to_be_generated
value: en_US.UTF-8 UTF-8, fr_FR.UTF-8 UTF-8
vtype: multiselect
- name: Accept oracle license
debconf:
name: oracle-java7-installer
question: shared/accepted-oracle-license-v1-1
value: 'true'
vtype: select
- name: Specifying package you can register/return the list of questions and current values
debconf:
name: tzdata
More information about Red Hat’s support of this module is available from this Red Hat Knowledge Base article.
Hint
If you notice any issues in this documentation you can edit this document to improve it.