github.com/cdoern/storage@v1.12.13/pkg/ostree/no_ostree.go (about) 1 // +build !ostree 2 3 package ostree 4 5 func OstreeSupport() bool { 6 return false 7 } 8 9 func DeleteOSTree(repoLocation, id string) error { 10 return nil 11 } 12 13 func CreateOSTreeRepository(repoLocation string, rootUID int, rootGID int) error { 14 return nil 15 } 16 17 func ConvertToOSTree(repoLocation, root, id string) error { 18 return nil 19 }