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