Merge pull request #683 from thtanaka/mqueue-label

Only perform mount labelling when necessary
This commit is contained in:
Mrunal Patel 2016-03-29 09:30:43 -07:00
commit e55fcbda8a
1 changed files with 2 additions and 1 deletions

View File

@ -140,8 +140,9 @@ func mountToRootfs(m *configs.Mount, rootfs, mountLabel string) error {
if err := mountPropagate(m, rootfs, ""); err != nil {
return err
}
return label.SetFileLabel(dest, mountLabel)
}
return label.SetFileLabel(dest, mountLabel)
return nil
case "tmpfs":
stat, err := os.Stat(dest)
if err != nil {