From 34a655ef92d7cd05d94644f1e351e52b4f4ef238 Mon Sep 17 00:00:00 2001 From: "Md. Ishtiaq Islam" Date: Fri, 9 Feb 2024 16:30:17 +0600 Subject: [PATCH] Fix tmp dir Signed-off-by: Md. Ishtiaq Islam --- pkg/constants.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pkg/constants.go b/pkg/constants.go index 9e3510eb..89ed006e 100644 --- a/pkg/constants.go +++ b/pkg/constants.go @@ -23,11 +23,11 @@ const ( CmdKubectl = "kubectl" CmdDocker = "docker" - ScratchDir = "/kubestash-tmp/scratch" - DestinationDir = "/kubestash-tmp/destination" + ScratchDir = "/tmp/scratch" + DestinationDir = "/tmp/destination" SnapshotDownloadDir = "/kubestash-tmp/snapshot" PasswordFile = "/kubestash-tmp/password.txt" - ConfigDir = "/kubestash-tmp/scratch/config" + ConfigDir = "/tmp/scratch/config" ResticEnvs = "restic-envs" ResticRegistry = "restic"