19 lines
1.0 KiB
YAML
19 lines
1.0 KiB
YAML
# Standardwerte, die überschrieben werden können
|
|
os_update_auto_upgrade: true
|
|
os_also_update_mirror: false
|
|
|
|
# Logging of OS update runs (preflight package count/list, updated packages, duration)
|
|
os_update_logging_enabled: true
|
|
os_update_log_dir: /ansible/logs
|
|
os_update_log_inventory: "{{ inventory_file | basename | splitext | first }}"
|
|
os_update_log_file: "{{ os_update_log_dir }}/{{ os_update_log_inventory }}/{{ ansible_facts['hostname'] }}/update.log"
|
|
os_update_mirrors:
|
|
# Role needs two mirros to use for the sources.list.j2 Template
|
|
- "http://deb.debian.org/debian" # Enter a main mirror here (not security)
|
|
- "http://security.debian.org/debian-security" # Enter a security mirror here
|
|
os_update_version_codename: "{{ ansible_facts['distribution_release'] }}" # KEEP UNTOUCHED!! | Used for jinja2 Template fill in as it determines the current codename of system where ansible is run on
|
|
os_update_debian_codenames:
|
|
# Only these suites are considered Debian codenames and will be rewritten in sources.list.d
|
|
- trixie
|
|
- bookworm
|
|
- bullseye |