Merge pull request #148 from superbaud/apt-cacher-ng

Install apt-cacher-ng from bullseye-backports (it's more recent)
This commit is contained in:
sasha 2022-07-28 18:45:05 -07:00 committed by GitHub
commit 0729ea26ab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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"