mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-22 15:40:23 +00:00
33 lines
576 B
Go
33 lines
576 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/drakkan/sftpgo/service"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
uninstallCmd = &cobra.Command{
|
||
|
Use: "uninstall",
|
||
|
Short: "Uninstall SFTPGo Windows Service",
|
||
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
s := service.WindowsService{
|
||
|
Service: service.Service{
|
||
|
Shutdown: make(chan bool),
|
||
|
},
|
||
|
}
|
||
|
err := s.Uninstall()
|
||
|
if err != nil {
|
||
|
fmt.Printf("Error removing service: %v\r\n", err)
|
||
|
} else {
|
||
|
fmt.Printf("Service uninstalled\r\n")
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
serviceCmd.AddCommand(uninstallCmd)
|
||
|
}
|