photoprism/internal/commands/stop.go
2019-06-30 05:38:39 +02:00

48 lines
849 B
Go

package commands
import (
"syscall"
"github.com/photoprism/photoprism/internal/config"
"github.com/sevlyar/go-daemon"
"github.com/urfave/cli"
)
// StopCommand stops the daemon if running.
var StopCommand = cli.Command{
Name: "stop",
Usage: "Stops daemon",
Action: stopAction,
}
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
}