forgot sudo

This commit is contained in:
Steven Robertson 2020-02-18 15:18:14 -08:00
parent 57d56a63c0
commit 39b55796c5
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ with ci_lib.Fold('job_setup'):
if not ci_lib.exists_in_path('sshpass'): if not ci_lib.exists_in_path('sshpass'):
# fix errors with apt-get update # fix errors with apt-get update
run("sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 78BD65473CB3BD13") run("sudo apt-key adv --keyserver hkp://keyserver.ubuntu.com:80 --recv-keys 78BD65473CB3BD13")
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/cassandra.list") run("sudo 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/cassandra.list")
run("sudo apt-get update") run("sudo apt-get update")
run("sudo apt-get install -y sshpass") run("sudo apt-get install -y sshpass")