clonetree_stub.go 523 B

123456789101112131415161718192021222324252627282930
  1. //go:build !linux
  2. // +build !linux
  3. //
  4. // Use and distribution licensed under the Apache license version 2.
  5. //
  6. // See the COPYING file in the root project directory for full text.
  7. //
  8. package snapshot
  9. func setupScratchDir(scratchDir string) error {
  10. return nil
  11. }
  12. func ExpectedCloneStaticContent() []string {
  13. return []string{}
  14. }
  15. func ExpectedCloneGPUContent() []string {
  16. return []string{}
  17. }
  18. func ExpectedCloneNetContent() []string {
  19. return []string{}
  20. }
  21. func ExpectedClonePCIContent() []string {
  22. return []string{}
  23. }