1
0
mirror of https://github.com/pavel-odintsov/fastnetmon synced 2024-11-26 13:14:31 +01:00

Upgraded debootstrap to version from Debian Unstable to address issues with Docker

I: running debootstrap
/usr/sbin/debootstrap
mknod: /var/cache/pbuilder/build/25122/test-dev-null: Operation not permitted
E: Cannot install into target '/var/cache/pbuilder/build/25122' mounted with noexec or nodev
E: debootstrap failed
This commit is contained in:
Pavel Odintsov 2022-04-29 21:19:20 +01:00
parent 0fb23ec144
commit e786c36c23

@ -19,6 +19,9 @@ jobs:
- restore_cache:
keys:
- "{{ .Environment.CIRCLE_JOB }}_debian_sid_image"
- run:
name: "Install debootstrap from Debian Unstable to address incompatibility with Docker: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=930684"
command: wget https://ftp.us.debian.org/debian/pool/main/d/debootstrap/debootstrap_1.0.126+nmu1_all.deb; dpkg -i debootstrap_1.0.126+nmu1_all.deb
- run: "[ ! -f /root/sid_base.tgz ] && /usr/sbin/pbuilder --create --basetgz /root/sid_base.tgz --distribution sid"
- save_cache:
key: "{{ .Environment.CIRCLE_JOB }}_debian_sid_image"