43 lines
951 B
Text
43 lines
951 B
Text
|
{{ ansible_managed | comment }}
|
||
|
|
||
|
# Ref: https://github.com/rpm-software-management/dnf/blob/master/doc/automatic.rst
|
||
|
|
||
|
[commands]
|
||
|
|
||
|
apply_updates = {{ dnf_install_updates }}
|
||
|
download_updates = {{ dnf_download_updates }}
|
||
|
network_online_timeout = {{ dnf_network_online_timeout }}
|
||
|
random_sleep = {{ dnf_random_sleep }}
|
||
|
upgrade_type = {{ dnf_upgrade_type }}
|
||
|
|
||
|
[emitters]
|
||
|
|
||
|
emit_via = {{ dnf_emit_via }}
|
||
|
system_name = {{ dnf_system_name }}
|
||
|
|
||
|
[command]
|
||
|
|
||
|
command_format = {{ dnf_command_format }}
|
||
|
stdin_format = {{ dnf_stdin_format }}
|
||
|
|
||
|
[command_email]
|
||
|
|
||
|
command_format = {{ dnf_email_command_format }}
|
||
|
email_from = {{ dnf_email_from }}
|
||
|
email_to = {{ dnf_email_to }}
|
||
|
stdin_format = {{ dnf_email_stdin_format }}
|
||
|
|
||
|
[email]
|
||
|
|
||
|
email_from = {{ dnf_email_from }}
|
||
|
email_host = {{ dnf_email_host }}
|
||
|
email_to = {{ dnf_email_to }}
|
||
|
|
||
|
[base]
|
||
|
|
||
|
{% if dnf_base_overrides is mapping %}
|
||
|
{% for key, value in dnf_base_overrides.items() %}
|
||
|
{{ key }}={{ value }}
|
||
|
{% endfor %}
|
||
|
{% endif %}
|