mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-22 15:40:23 +00:00
b80abe6c05
Fixes #132
35 lines
570 B
Go
35 lines
570 B
Go
package cmd
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
|
|
"github.com/spf13/cobra"
|
|
|
|
"github.com/drakkan/sftpgo/service"
|
|
)
|
|
|
|
var (
|
|
stopCmd = &cobra.Command{
|
|
Use: "stop",
|
|
Short: "Stop SFTPGo Windows Service",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
s := service.WindowsService{
|
|
Service: service.Service{
|
|
Shutdown: make(chan bool),
|
|
},
|
|
}
|
|
err := s.Stop()
|
|
if err != nil {
|
|
fmt.Printf("Error stopping service: %v\r\n", err)
|
|
os.Exit(1)
|
|
} else {
|
|
fmt.Printf("Service stopped!\r\n")
|
|
}
|
|
},
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
serviceCmd.AddCommand(stopCmd)
|
|
}
|