From 7651ebf3dd750f611b413b1466b2f4c18c93c9a4 Mon Sep 17 00:00:00 2001 From: Jamie Wilkinson Date: Sun, 7 Jan 2024 16:16:22 +1100 Subject: [PATCH] doc: Fix spelling error. --- docs/Deploying.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/Deploying.md b/docs/Deploying.md index beeb453e..58152eb0 100644 --- a/docs/Deploying.md +++ b/docs/Deploying.md @@ -115,7 +115,7 @@ file { mtail_programme: } ``` -Alternatively, if you're using `scp` or some similiar method to copy the programme files without a receiver, then either follow it with a `ssh $host 'killall -HUP mtail'` or use a tool like [`inotifywait`](https://linux.die.net/man/1/inotifywait) in a side process next to mtail to watch for changes and send the reload signal. +Alternatively, if you're using `scp` or some similar method to copy the programme files without a receiver, then either follow it with a `ssh $host 'killall -HUP mtail'` or use a tool like [`inotifywait`](https://linux.die.net/man/1/inotifywait) in a side process next to mtail to watch for changes and send the reload signal. ```shell inotifywait -m /etc/mtail/progs | while read event; do killall -HUP mtail; done