feat: update

This commit is contained in:
2026-06-06 09:15:46 +03:30
parent 802c9b91f7
commit 16f76364f7
3 changed files with 44 additions and 1 deletions
+8
View File
@@ -32,6 +32,14 @@ func bindMount(source, target string) error {
return m.Mount(source, target, "", []string{"bind"})
}
func isHostMounted(path string) bool {
return isMounted(path)
}
func unmountHost(path string) error {
return nil
}
func isMounted(path string) bool {
m := newMounter()
notMnt, err := m.IsLikelyNotMountPoint(path)