1
0
mirror of https://github.com/rancher/os.git synced 2025-09-16 06:59:12 +00:00

Fix sbin symlink and bootstrap services

This commit is contained in:
Darren Shepherd
2015-08-06 00:49:00 -07:00
parent cc5613c64c
commit 13106ed63f
2 changed files with 2 additions and 1 deletions

View File

@@ -76,7 +76,7 @@ func newProject(name string, cfg *config.CloudConfig) (*project.Project, error)
func addServices(p *project.Project, cfg *config.CloudConfig, enabled map[string]string, configs map[string]*project.ServiceConfig) {
// Note: we ignore errors while loading services
for name, serviceConfig := range cfg.Rancher.Services {
for name, serviceConfig := range configs {
hash := project.GetServiceHash(name, *serviceConfig)
if enabled[name] == hash {