Remove buster pre-release tweaks

Buster is now consistent in this regard
This commit is contained in:
Joshua Boniface 2023-09-01 15:42:20 -04:00
parent 9b457890d5
commit f5ea3aab24
1 changed files with 0 additions and 24 deletions

View File

@ -44,30 +44,6 @@
var: ansible_local.dhcp_status var: ansible_local.dhcp_status
verbosity: 1 verbosity: 1
#
# Debian Buster pre-release tweaks
#
- name: add proper VERSION line in os-release (Debian 10.X testing only)
lineinfile:
dest: "/etc/os-release"
line: 'VERSION="10 (buster)"'
state: present
register: installed_facts
when:
- ansible_distribution_major_version == "buster/sid"
- name: regather facts
setup:
when:
- installed_facts.changed
- ansible_distribution_major_version == "buster/sid"
- debug:
var: ansible_distribution_release
verbosity: 1
when:
- ansible_distribution_major_version == "buster/sid"
# #
# Configure APT # Configure APT
# #