Only perform mount labelling when necessary

Do label mqueue when mounting it with label failed/not supported.

Signed-off-by: Thomas Tanaka <thomas.tanaka@oracle.com>
This commit is contained in:
Thomas Tanaka 2016-03-24 13:14:57 -07:00
parent 5439bd2d95
commit 55aabc142c
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 {