-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5913 from hashicorp/f-fix-contenttype-tests
Fixed test case for detecting content type
- Loading branch information
Showing
3 changed files
with
24 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,26 @@ | ||
package main | ||
package allocdir | ||
|
||
import ( | ||
"fmt" | ||
"os" | ||
"syscall" | ||
) | ||
|
||
func main() { | ||
fmt.Println("Hello, playground") | ||
// 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) | ||
} |