Skip to content

Commit

Permalink
Change temporary directory from /tmp to /kubestash-tmp (#16)
Browse files Browse the repository at this point in the history
Signed-off-by: Anisur Rahman <[email protected]>
  • Loading branch information
anisurrahman75 authored Feb 1, 2024
1 parent 7476b24 commit b647435
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkg/constants.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,11 +23,11 @@ const (
CmdKubectl = "kubectl"
CmdDocker = "docker"

ScratchDir = "/tmp/scratch"
DestinationDir = "/tmp/destination"
SnapshotDownloadDir = "/tmp/snapshot"
PasswordFile = "/tmp/password.txt"
ConfigDir = "/tmp/scratch/config"
ScratchDir = "/kubestash-tmp/scratch"
DestinationDir = "/kubestash-tmp/destination"
SnapshotDownloadDir = "/kubestash-tmp/snapshot"
PasswordFile = "/kubestash-tmp/password.txt"
ConfigDir = "/kubestash-tmp/scratch/config"

ResticEnvs = "restic-envs"
ResticRegistry = "restic"
Expand Down

0 comments on commit b647435

Please sign in to comment.