mirror of
https://github.com/clearlinux/docker.git
synced 2026-09-05 21:21:42 +00:00
12 lines
198 B
Go
12 lines
198 B
Go
// +build exclude_graphdriver_aufs,linux
|
|
|
|
package daemon
|
|
|
|
import (
|
|
"github.com/docker/docker/daemon/graphdriver"
|
|
)
|
|
|
|
func migrateIfAufs(driver graphdriver.Driver, root string) error {
|
|
return nil
|
|
}
|