Browse Source

Fix: Debian 13 system_package not found software-properties-common

Debian Trixie recently removed the package `software-properties-common`,
add the condition not on Debian Trixie.

Signed-off-by: ChengHao Yang <17496418+tico88612@users.noreply.github.com>
pull/12456/head
ChengHao Yang 1 month ago
parent
commit
7f64758592
Failed to extract signature
1 changed files with 1 additions and 0 deletions
  1. 1
      roles/system_packages/vars/main.yml

1
roles/system_packages/vars/main.yml

@ -108,6 +108,7 @@ pkgs:
socat: []
software-properties-common:
- "{{ ansible_os_family == 'Debian' }}"
- "{{ ansible_distribution_major_version != '13' }}"
tar: []
unzip: []
xfsprogs: []
Loading…
Cancel
Save