From a8888916b17f80a5f21d62e9c5cf69cd27aff853 Mon Sep 17 00:00:00 2001 From: Steven Robertson Date: Tue, 18 Feb 2020 15:01:38 -0800 Subject: [PATCH] sources.list not what was expected, debug commit to find the bad deb entry --- .ci/ansible_tests.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.ci/ansible_tests.py b/.ci/ansible_tests.py index fb5c3611..7a428468 100755 --- a/.ci/ansible_tests.py +++ b/.ci/ansible_tests.py @@ -68,6 +68,9 @@ with ci_lib.Fold('job_setup'): if not ci_lib.exists_in_path('sshpass'): # fix errors with apt-get update run("sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 78BD65473CB3BD13") + # DEBUG + run("sudo ls -aol /etc/apt/sources.list.d") + run("sudo ls -aol /etc/apt/sources.list") run("sed -i -e 's#deb https://downloads.apache.org/cassandra/debian 39x main#deb http://downloads.apache.org/cassandra/debian 39x main#g' /etc/apt/sources.list.d/39x.list") run("sudo apt-get update")