diff --git a/CHANGELOG.md b/CHANGELOG.md index e6caba9ff..3264186b2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,13 @@ +v1.7.3-1 +-------- + +Fixes: + +* Fixes an issue where new multiserver setups of Server Manager would go into a redirect loop when creating new servers. + If you experienced this issue, please try setting the multiserver up from scratch (i.e. delete the shared_store.json and servers folders). + +--- + v1.7.3 ------ diff --git a/migrations.go b/migrations.go index 6b97eab22..443442ef7 100644 --- a/migrations.go +++ b/migrations.go @@ -132,6 +132,8 @@ func addAdminAccount(rs Store) error { account := NewAccount() account.Name = adminUserName account.DefaultPassword = "servermanager" + // DeprecatedGroup must be assigned to here, since a following migration will just re-set-up Groups. + account.DeprecatedGroup = GroupAdmin account.Groups[serverID] = GroupAdmin return rs.UpsertAccount(account)