Install apt-cacher-ng from bullseye-backports (it's more recent)

This likely fixes the HTTP error 502 problem (#147)
This commit is contained in:
sasha 2022-07-28 15:29:22 -07:00
parent 0efa24d13c
commit 991baff2af
1 changed files with 7 additions and 1 deletions

View File

@ -13,7 +13,6 @@
- name: Install Gitian dependencies.
apt:
name:
- apt-cacher-ng
- bridge-utils
- curl
- debootstrap
@ -30,6 +29,13 @@
state: present
update_cache: yes
- name: Install more recent version of apt-cacher-ng
apt:
name: apt-cacher-ng
state: latest
update_cache: yes
default_release: bullseye-backports
- name: Install ruamel.yaml
pip:
name: "ruamel.yaml>=0.15.0,<0.16.0"