From 925592f9aaaea0f63e40bf5dccf6c6e7a64b468f Mon Sep 17 00:00:00 2001 From: XhmikosR Date: Fri, 27 Mar 2020 10:51:50 +0200 Subject: [PATCH] Update dns-over-https.md Fix manual update instructions --- docs/guides/dns-over-https.md | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/docs/guides/dns-over-https.md b/docs/guides/dns-over-https.md index 9ef2c90..a396e58 100644 --- a/docs/guides/dns-over-https.md +++ b/docs/guides/dns-over-https.md @@ -180,15 +180,18 @@ Finally, configure Pi-hole to use the local `cloudflared` service as the upstrea #### Manual way ```bash -# stop the service -sudo systemctl stop cloudflared # fetch and copy the latest version wget https://bin.equinox.io/c/VdrWdbjqyF/cloudflared-stable-linux-arm.tgz tar -xvzf cloudflared-stable-linux-arm.tgz +# stop the service +sudo systemctl stop cloudflared +# copy the binary sudo cp ./cloudflared /usr/local/bin sudo chmod +x /usr/local/bin/cloudflared +# start the service sudo systemctl start cloudflared -# verify the service is working fine +# verify the service and binary are working fine +cloudflared -v sudo systemctl status cloudflared ```