From c836cbce790db59df6307c57ea3a6be0933297d1 Mon Sep 17 00:00:00 2001
From: Kevin Wang <107007323+wevinkang@users.noreply.github.com>
Date: Fri, 28 Jun 2024 12:04:05 -0400
Subject: [PATCH] Update README.md

Updated the full path for ntp.conf file.
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index c25ea71..7ae5b98 100644
--- a/README.md
+++ b/README.md
@@ -1018,7 +1018,7 @@ NTP stands for Network Time Protocol. In the context of this guide, an NTP clien
 1. Make a backup of the NTP client's configuration file `/etc/ntp.conf`:
 
     ``` bash
-    sudo cp --archive /etc/ntp.conf /etc/ntp.conf-COPY-$(date +"%Y%m%d%H%M%S")
+    sudo cp --archive /etc/ntpsec/ntp.conf /etc/ntpsec/ntp.conf-COPY-$(date +"%Y%m%d%H%M%S")
     ```
 
 1. The default configuration, at least on Debian, is already pretty secure. The only thing we'll want to make sure is we're the `pool` directive and not any `server` directives. The `pool` directive allows the NTP client to stop using a server if it is unresponsive or serving bad time. Do this by commenting out all `server` directives and adding the below to `/etc/ntp.conf`.