1
0
mirror of https://github.com/rancher/os.git synced 2025-09-02 15:24:32 +00:00

Note the os-release file that system-docker wants is lost

Signed-off-by: Sven Dowideit <SvenDowideit@home.org.au>
This commit is contained in:
Sven Dowideit
2017-07-11 21:12:48 +10:00
parent 47261eab01
commit 43c620c4d8
3 changed files with 5 additions and 5 deletions

View File

@@ -439,12 +439,10 @@ func enableHypervisorService(hypervisorName string) {
cfg := config.LoadConfig()
if service.ValidService(serviceName, cfg) {
log.Infof("Setting rancher.services_include. %s=true", serviceName)
log.Debugf("SVEN Setting rancher.services_include. %s=true", serviceName)
if err := config.Set("rancher.services_include."+serviceName, "true"); err != nil {
log.Error(err)
}
} else {
log.Infof("SVEN Skipping %s, can't get %s.yml file", serviceName, serviceName)
log.Debugf("SVEN Skipping %s, can't get %s.yml file", serviceName, serviceName)
log.Infof("Skipping %s, can't get %s.yml file", serviceName, serviceName)
}
}