Merge pull request #5781 from creack/remove_bind_console

Remove the bind mount for dev/console which override the mknod/label
This commit is contained in:
Victor Vieux 2014-05-14 10:57:21 -07:00
commit 7e31653f91
1 changed files with 0 additions and 3 deletions

View File

@ -40,9 +40,6 @@ func Setup(rootfs, consolePath, mountLabel string) error {
if err := label.SetFileLabel(consolePath, mountLabel); err != nil {
return fmt.Errorf("set file label %s %s", dest, err)
}
if err := system.Mount(consolePath, dest, "bind", syscall.MS_BIND, ""); err != nil {
return fmt.Errorf("bind %s to %s %s", consolePath, dest, err)
}
return nil
}