2020-01-28 20:01:06 -05:00
|
|
|
// 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.
|
|
|
|
|
2021-08-24 12:47:09 -04:00
|
|
|
//go:build !windows
|
|
|
|
// +build !windows
|
|
|
|
|
2020-01-28 20:01:06 -05:00
|
|
|
package private
|
|
|
|
|
|
|
|
import (
|
|
|
|
"net/http"
|
|
|
|
|
2021-01-26 10:36:53 -05:00
|
|
|
"code.gitea.io/gitea/modules/context"
|
2020-01-28 20:01:06 -05:00
|
|
|
"code.gitea.io/gitea/modules/graceful"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Restart causes the server to perform a graceful restart
|
2021-01-26 10:36:53 -05:00
|
|
|
func Restart(ctx *context.PrivateContext) {
|
2020-01-28 20:01:06 -05:00
|
|
|
graceful.GetManager().DoGracefulRestart()
|
2021-12-15 01:59:57 -05:00
|
|
|
ctx.PlainText(http.StatusOK, "success")
|
2020-01-28 20:01:06 -05:00
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Shutdown causes the server to perform a graceful shutdown
|
2021-01-26 10:36:53 -05:00
|
|
|
func Shutdown(ctx *context.PrivateContext) {
|
2020-01-28 20:01:06 -05:00
|
|
|
graceful.GetManager().DoGracefulShutdown()
|
2021-12-15 01:59:57 -05:00
|
|
|
ctx.PlainText(http.StatusOK, "success")
|
2020-01-28 20:01:06 -05:00
|
|
|
}
|