1
0
mirror of https://github.com/rancher/os.git synced 2025-08-31 22:32:14 +00:00

Enable SELinux

This commit is contained in:
Josh Curl
2016-02-19 16:11:32 -08:00
parent 90c8de9c0a
commit f28d463504
12 changed files with 71 additions and 2 deletions

View File

@@ -220,6 +220,10 @@ func RunInit() error {
return config.LoadConfig()
},
loadModules,
func(c *config.CloudConfig) (*config.CloudConfig, error) {
return c, dockerlaunch.PrepareFs(&mountConfig)
},
initializeSelinux,
sysInit,
}
@@ -236,5 +240,6 @@ func RunInit() error {
if err != nil {
return err
}
return pidOne()
}