photoprism/internal/commands/stop.go
Michael Mayer f94ff54cc1 Auth: Improve account management page and config options #98
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-10-19 05:09:09 +02:00

55 lines
990 B
Go

package commands
import (
"syscall"
"github.com/sevlyar/go-daemon"
"github.com/urfave/cli"
"github.com/photoprism/photoprism/pkg/clean"
)
// StopCommand registers the stop cli command.
var StopCommand = cli.Command{
Name: "stop",
Aliases: []string{"down"},
Usage: "Stops the Web server in daemon mode",
Action: stopAction,
}
// stopAction stops the daemon if it is running.
func stopAction(ctx *cli.Context) error {
conf, err := InitConfig(ctx)
if err != nil {
return err
}
log.Infof("looking for pid in %s", clean.Log(conf.PIDFilename()))
dcxt := new(daemon.Context)
dcxt.PidFileName = conf.PIDFilename()
child, err := dcxt.Search()
if err != nil {
log.Fatal(err)
}
err = child.Signal(syscall.SIGTERM)
if err != nil {
log.Fatal(err)
}
st, err := child.Wait()
if err != nil {
log.Info("daemon exited successfully")
return nil
}
log.Infof("daemon[%v] exited[%v]? successfully[%v]?\n", st.Pid(), st.Exited(), st.Success())
return nil
}