From f95ce15fb300ccaeb671693963f69a75fcb4122e Mon Sep 17 00:00:00 2001 From: Staubgeborener Date: Tue, 29 Oct 2024 15:59:54 +0100 Subject: [PATCH] Update automation.md --- docs/automation.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/docs/automation.md b/docs/automation.md index 08b08ca..d539ea1 100644 --- a/docs/automation.md +++ b/docs/automation.md @@ -109,3 +109,15 @@ sudo systemctl start klipper-backup-filewatch.service When making significant edits you may want to stop the service. You can do so in the service manager of Fluidd/Mainsail. Below is an example within Fluidd of where to find the service manager. ![fluidd-service-manager](https://i.imgur.com/kOct70v.gif) + +## How do I deactivate systemd services? +Since the above mentioned procedures [Backup on boot](#backup-on-boot) and [Backup on file changes](#backup-on-file-changes) are systemd services, deactivating them is just as simple as following: +``` +# Deactivating Backup on boot +sudo systemctl stop klipper-backup-on-boot.service +sudo systemctl disable klipper-backup-on-boot.service + +# Deactivating Backup on file changes +sudo systemctl stop klipper-backup-filewatch.service +sudo systemctl disable klipper-backup-filewatch.service +```