49 lines
967 B
Go
49 lines
967 B
Go
package commands
|
|
|
|
import (
|
|
"syscall"
|
|
|
|
"github.com/photoprism/photoprism/internal/config"
|
|
"github.com/sevlyar/go-daemon"
|
|
"github.com/urfave/cli"
|
|
)
|
|
|
|
// StopCommand is used to register the stop cli command
|
|
var StopCommand = cli.Command{
|
|
Name: "stop",
|
|
Aliases: []string{"down"},
|
|
Usage: "Stops web server (only in daemon mode)",
|
|
Action: stopAction,
|
|
}
|
|
|
|
// stopAction stops the daemon if it is running.
|
|
func stopAction(ctx *cli.Context) error {
|
|
conf := config.NewConfig(ctx)
|
|
|
|
log.Infof("looking for pid in \"%s\"", 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
|
|
}
|