mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-22 07:30:25 +00:00
39 lines
875 B
Go
39 lines
875 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/drakkan/sftpgo/service"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var (
|
|
serveCmd = &cobra.Command{
|
|
Use: "serve",
|
|
Short: "Start the SFTP Server",
|
|
Long: `To start the SFTPGo with the default values for the command line flags simply use:
|
|
|
|
sftpgo serve
|
|
|
|
Please take a look at the usage below to customize the startup options`,
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
service := service.Service{
|
|
ConfigDir: configDir,
|
|
ConfigFile: configFile,
|
|
LogFilePath: logFilePath,
|
|
LogMaxSize: logMaxSize,
|
|
LogMaxBackups: logMaxBackups,
|
|
LogMaxAge: logMaxAge,
|
|
LogCompress: logCompress,
|
|
LogVerbose: logVerbose,
|
|
Shutdown: make(chan bool),
|
|
}
|
|
if err := service.Start(); err == nil {
|
|
service.Wait()
|
|
}
|
|
},
|
|
}
|
|
)
|
|
|
|
func init() {
|
|
rootCmd.AddCommand(serveCmd)
|
|
addServeFlags(serveCmd)
|
|
}
|