Commit 455ebd7c authored by nanahira's avatar nanahira

fix

parent 6867e96a
Pipeline #20171 passed with stage
in 10 minutes and 59 seconds
......@@ -9,11 +9,11 @@
- name: target distribution for non-sid
set_fact:
docker_distribution: '{{ target_distribution }}'
when: ansible_distribution_release != 'sid' and target_distribution != 'bullseye'
when: ansible_os_family == 'Debian' and ansible_distribution_release != 'sid' and target_distribution != 'bullseye'
- name: target distribution for sid
set_fact:
docker_distribution: bullseye
when: ansible_distribution_release == 'sid' or target_distribution == 'bullseye'
when: ansible_os_family == 'Debian' and (ansible_distribution_release == 'sid' or target_distribution == 'bullseye')
- name: Docker apt 源公钥
become: true
apt_key:
......
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