mirror of
https://codeberg.org/forgejo/forgejo.git
synced 2024-10-31 22:58:59 +01:00
c18d8d6968
Go 1.17 and later use modern `//go:build` constraints, the old `// +build:` constraints should be removed.
26 lines
688 B
Go
26 lines
688 B
Go
// Copyright 2020 The Gitea Authors. All rights reserved.
|
|
// Use of this source code is governed by a MIT-style
|
|
// license that can be found in the LICENSE file.
|
|
|
|
//go:build !windows
|
|
|
|
package private
|
|
|
|
import (
|
|
"net/http"
|
|
|
|
"code.gitea.io/gitea/modules/context"
|
|
"code.gitea.io/gitea/modules/graceful"
|
|
)
|
|
|
|
// Restart causes the server to perform a graceful restart
|
|
func Restart(ctx *context.PrivateContext) {
|
|
graceful.GetManager().DoGracefulRestart()
|
|
ctx.PlainText(http.StatusOK, "success")
|
|
}
|
|
|
|
// Shutdown causes the server to perform a graceful shutdown
|
|
func Shutdown(ctx *context.PrivateContext) {
|
|
graceful.GetManager().DoGracefulShutdown()
|
|
ctx.PlainText(http.StatusOK, "success")
|
|
}
|