From 1dadae03a934dd00cfe878714027162d071251c0 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Sun, 25 Oct 2020 15:53:42 -0700 Subject: [PATCH] install missing python-netaddr for debops --- .ci/debops_common_install.py | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/debops_common_install.py b/.ci/debops_common_install.py index 470a5f5e..13cfe1cc 100755 --- a/.ci/debops_common_install.py +++ b/.ci/debops_common_install.py @@ -14,6 +14,7 @@ ci_lib.run_batches([ ], [ 'docker pull %s' % (ci_lib.image_for_distro('debian'),), + 'apt install --no-install-recommends python-netaddr', ], ])