* don't force a password change for the admin user
* don't totally dicard -must-change-password flag if creating the first (admin) user via the cli. Use flag if present but make sure to default to not forcing a password update
// always default to true
var changePassword = true
+ // If this is the first user being created.
+ // Take it as the admin and don't force a password update.
+ if n := models.CountUsers(); n == 0 {
+ changePassword = false
+ }
+
if c.IsSet("must-change-password") {
changePassword = c.Bool("must-change-password")
}