2023-04-10 15:36:59 +00:00
|
|
|
// Copyright (c) HashiCorp, Inc.
|
|
|
|
// SPDX-License-Identifier: MPL-2.0
|
|
|
|
|
2016-12-03 01:04:07 +00:00
|
|
|
package allocdir
|
|
|
|
|
|
|
|
import (
|
|
|
|
"os"
|
|
|
|
"syscall"
|
|
|
|
)
|
|
|
|
|
|
|
|
// linkDir hardlinks src to dst. The src and dst must be on the same filesystem.
|
|
|
|
func linkDir(src, dst string) error {
|
|
|
|
return syscall.Link(src, dst)
|
|
|
|
}
|
|
|
|
|
|
|
|
// unlinkDir removes a directory link.
|
|
|
|
func unlinkDir(dir string) error {
|
|
|
|
return syscall.Unlink(dir)
|
|
|
|
}
|
|
|
|
|
|
|
|
// createSecretDir creates the secrets dir folder at the given path
|
|
|
|
func createSecretDir(dir string) error {
|
|
|
|
return os.MkdirAll(dir, 0777)
|
|
|
|
}
|
|
|
|
|
|
|
|
// removeSecretDir removes the secrets dir folder
|
|
|
|
func removeSecretDir(dir string) error {
|
|
|
|
return os.RemoveAll(dir)
|
|
|
|
}
|