Commit 1f8b7073 authored by nanahira's avatar nanahira

bookworm

parent 5b365ea1
Pipeline #22224 passed with stage
in 6 minutes and 2 seconds
......@@ -9,11 +9,11 @@
- name: target distribution for non-sid
set_fact:
docker_distribution: '{{ target_distribution }}'
when: ansible_os_family == 'Debian' and ansible_distribution_release != 'sid' and target_distribution != 'bullseye'
when: ansible_os_family == 'Debian' and ansible_distribution_release != 'sid' and target_distribution != 'bookworm'
- name: target distribution for sid
set_fact:
docker_distribution: bullseye
when: ansible_os_family == 'Debian' and (ansible_distribution_release == 'sid' or target_distribution == 'bullseye')
docker_distribution: bookworm
when: ansible_os_family == 'Debian' and (ansible_distribution_release == 'sid' or target_distribution == 'bookworm')
- name: Docker apt 源公钥
become: true
apt_key:
......
......@@ -81,9 +81,9 @@
set_fact:
target_distribution: 'jammy'
when: ansible_distribution == 'Ubuntu' and upgrade and not keep_distro
- name: move to bullseye
- name: move to bookworm
set_fact:
target_distribution: 'bullseye'
target_distribution: 'bookworm'
when: ansible_distribution == 'Debian' and upgrade and ansible_distribution_release != 'sid' and not keep_distro
- name: 系统源 (apt)
become: true
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment