From cb1e4e066df44baca28e4d9d008a2b14a74d3b86 Mon Sep 17 00:00:00 2001 From: Pablo Revilla Date: Fri, 6 Jun 2025 15:46:55 -0700 Subject: [PATCH] Worked on README.md to add cleanup instructions --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 762ff13..5dafd51 100644 --- a/README.md +++ b/README.md @@ -286,7 +286,7 @@ sudo systemctl daemon-reload ``` ### 5. Database Maintenance -Run a script to keep the database small and fast. +Run a script to keep the database small and fast.(modify /path/to/file/ to the correct path) ```bash #!/bin/bash @@ -322,7 +322,7 @@ Open scheduler ```bash sudo crontab -e ``` -Add schedule to the bottom of the file +Add schedule to the bottom of the file (modify /path/to/file/ to the correct path) ```bash 0 2 * * * /path/to/file/cleanup.sh >> /path/to/file/cleanup.log 2>&1 ```