mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-22 15:40:23 +00:00
43 lines
865 B
Go
43 lines
865 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
|
||
|
"github.com/drakkan/sftpgo/service"
|
||
|
"github.com/spf13/cobra"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
startCmd = &cobra.Command{
|
||
|
Use: "start",
|
||
|
Short: "Start SFTPGo Windows Service",
|
||
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
s := service.Service{
|
||
|
ConfigDir: configDir,
|
||
|
ConfigFile: configFile,
|
||
|
LogFilePath: logFilePath,
|
||
|
LogMaxSize: logMaxSize,
|
||
|
LogMaxBackups: logMaxBackups,
|
||
|
LogMaxAge: logMaxAge,
|
||
|
LogCompress: logCompress,
|
||
|
LogVerbose: logVerbose,
|
||
|
Shutdown: make(chan bool),
|
||
|
}
|
||
|
winService := service.WindowsService{
|
||
|
Service: s,
|
||
|
}
|
||
|
err := winService.RunService()
|
||
|
if err != nil {
|
||
|
fmt.Printf("Error starting service: %v\r\n", err)
|
||
|
} else {
|
||
|
fmt.Printf("Service started!\r\n")
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
serviceCmd.AddCommand(startCmd)
|
||
|
addServeFlags(startCmd)
|
||
|
}
|