sftpgo-mirror/cmd/reload_windows.go

36 lines
629 B
Go
Raw Normal View History

package cmd
import (
"fmt"
2020-06-20 12:30:46 +00:00
"os"
"github.com/spf13/cobra"
2021-06-26 05:31:41 +00:00
"github.com/drakkan/sftpgo/v2/service"
)
var (
reloadCmd = &cobra.Command{
Use: "reload",
Short: "Reload the SFTPGo Windows Service sending a \"paramchange\" request",
Run: func(cmd *cobra.Command, args []string) {
s := service.WindowsService{
Service: service.Service{
Shutdown: make(chan bool),
},
}
err := s.Reload()
if err != nil {
fmt.Printf("Error sending reload signal: %v\r\n", err)
2020-06-20 12:30:46 +00:00
os.Exit(1)
} else {
fmt.Printf("Reload signal sent!\r\n")
}
},
}
)
func init() {
serviceCmd.AddCommand(reloadCmd)
}