func RuntimeUnset(configStore *config.Store, app, env, pool string, options RuntimeOptions) (bool, error) { cfg, err := configStore.GetApp(app, env) if err != nil { return false, err } if options.Ps != 0 { cfg.SetProcesses(pool, -1) } if options.Memory != "" { cfg.SetMemory(pool, "") } vhosts := strings.Split(cfg.Env()["VIRTUAL_HOST"], ",") if options.VirtualHost != "" && utils.StringInSlice(options.VirtualHost, vhosts) { vhosts = utils.RemoveStringInSlice(options.VirtualHost, vhosts) cfg.EnvSet("VIRTUAL_HOST", strings.Join(vhosts, ",")) } if options.Port != "" { cfg.EnvSet("GALAXY_PORT", "") } return configStore.UpdateApp(cfg, env) }
func (r *MemoryBackend) UnassignApp(app, env, pool string) (bool, error) { if r.UnassignAppFunc != nil { return r.UnassignAppFunc(app, env, pool) } key := env + "/" + pool if !utils.StringInSlice(app, r.assignments[key]) { return false, nil } r.assignments[key] = utils.RemoveStringInSlice(app, r.assignments[key]) return true, nil }