From 4f36422be58e32628700981eb9b8204749bfbd26 Mon Sep 17 00:00:00 2001 From: GLVSKiriti <116095646+GLVSKiriti@users.noreply.github.com> Date: Tue, 26 Mar 2024 15:41:13 +0530 Subject: [PATCH] Updated comments Signed-off-by: GLVSKiriti <116095646+GLVSKiriti@users.noreply.github.com> --- events/syscall/remove_bulk_data_from_disk.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/events/syscall/remove_bulk_data_from_disk.go b/events/syscall/remove_bulk_data_from_disk.go index 18ae9e78..9067e3d4 100644 --- a/events/syscall/remove_bulk_data_from_disk.go +++ b/events/syscall/remove_bulk_data_from_disk.go @@ -32,8 +32,8 @@ func RemoveBulkDataFromDisk(h events.Helper) error { } h.Log().Infof("attempting to run shred command to remove bulk data from disk") - // Rule triggers irrespective of shred utility existence - // So no need to skip action even shred not exists + // Rule triggers regardless of whether the 'shred' utility exists + // Therefore, there's no need to skip the action even if 'shred' does not exist cmd := exec.Command("shred", "-u", filename) err := cmd.Run() return err