1
0
mirror of https://github.com/rancher/os.git synced 2025-09-01 06:40:31 +00:00

Make /run shared, also don't rshare in initrd

This commit is contained in:
Darren Shepherd
2016-06-17 08:04:35 -07:00
parent b6ddb4f577
commit ecc8482666
2 changed files with 2 additions and 1 deletions

View File

@@ -194,7 +194,7 @@ func setupSharedRoot(c *config.CloudConfig) (*config.CloudConfig, error) {
if err := mount.Mount("tmpfs", i, "tmpfs", "rw"); err != nil {
return c, err
}
if err := mount.MakeRShared(i); err != nil {
if err := mount.MakeShared(i); err != nil {
return c, err
}
}