From bd33bb46de379167a8dd8714d45234040afcdf90 Mon Sep 17 00:00:00 2001 From: gigadjo <134774964+gigadjo@users.noreply.github.com> Date: Mon, 12 Feb 2024 22:13:57 +0100 Subject: [PATCH] Update README.md Some sudo were missing, as it was present on the first line registering gpg key, i assume they were missing on the following :-) Hope it helps, thanks a lot for your work :-) /joen --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 5b7e941..c595e72 100644 --- a/README.md +++ b/README.md @@ -16,10 +16,10 @@ If you are installing Squid 6.6 for the first time from diladele.com repo, run t # add new repo echo "deb https://squid66.diladele.com/ubuntu/ jammy main" \ - > /etc/apt/sources.list.d/squid66.diladele.com.list + | sudo tee /etc/apt/sources.list.d/squid66.diladele.com.list # and install - apt-get update && apt-get install -y \ + sudo apt-get update && sudo apt-get install -y \ squid-common \ squid-openssl \ squidclient \ @@ -37,10 +37,10 @@ If you are installing Squid 5.7 for the first time from diladele.com repo, run t # add new repo echo "deb https://squid57.diladele.com/ubuntu/ focal main" \ - > /etc/apt/sources.list.d/squid57.diladele.com.list + | sudo tee /etc/apt/sources.list.d/squid57.diladele.com.list # and install - apt-get update && apt-get install -y \ + sudo apt-get update && sudo apt-get install -y \ squid-common \ squid-openssl \ squidclient \