mirror of
https://github.com/writeas/writefreely
synced 2025-02-08 13:08:44 +01:00
Always initialize database after --config
Previously, this would only run when configuring an instance for single-user usage. Now it'll also run when configuring for multi-user usage. It also adds a log when the database has already been initialized.
This commit is contained in:
parent
a102f97c3e
commit
8d9f60aaa9
4
app.go
4
app.go
@ -449,7 +449,6 @@ func DoConfig(app *App) {
|
||||
log.Error("Unable to configure: %v", err)
|
||||
os.Exit(1)
|
||||
}
|
||||
if d.User != nil {
|
||||
app.cfg = d.Config
|
||||
connectToDatabase(app)
|
||||
defer shutdown(app)
|
||||
@ -460,8 +459,11 @@ func DoConfig(app *App) {
|
||||
log.Error(err.Error())
|
||||
os.Exit(1)
|
||||
}
|
||||
} else {
|
||||
log.Info("Database already initialized.")
|
||||
}
|
||||
|
||||
if d.User != nil {
|
||||
u := &User{
|
||||
Username: d.User.Username,
|
||||
HashedPass: d.User.HashedPass,
|
||||
|
Loading…
x
Reference in New Issue
Block a user