sftpgo/cmd/serve.go

53 lines
1.2 KiB
Go
Raw Normal View History

package cmd
import (
2020-06-20 12:30:46 +00:00
"os"
"github.com/spf13/cobra"
2021-06-26 05:31:41 +00:00
"github.com/drakkan/sftpgo/v2/service"
2021-07-11 13:26:51 +00:00
"github.com/drakkan/sftpgo/v2/util"
)
var (
2019-09-16 06:52:58 +00:00
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
2019-09-16 06:52:58 +00:00
Please take a look at the usage below to customize the startup options`,
Run: func(cmd *cobra.Command, args []string) {
2019-09-16 06:52:58 +00:00
service := service.Service{
2021-07-11 13:26:51 +00:00
ConfigDir: util.CleanDirInput(configDir),
ConfigFile: configFile,
LogFilePath: logFilePath,
LogMaxSize: logMaxSize,
LogMaxBackups: logMaxBackups,
LogMaxAge: logMaxAge,
LogCompress: logCompress,
LogVerbose: logVerbose,
LoadDataFrom: loadDataFrom,
LoadDataMode: loadDataMode,
LoadDataQuotaScan: loadDataQuotaScan,
LoadDataClean: loadDataClean,
Shutdown: make(chan bool),
2019-09-16 06:52:58 +00:00
}
if err := service.Start(); err == nil {
service.Wait()
if service.Error == nil {
os.Exit(0)
}
2019-09-16 06:52:58 +00:00
}
2020-06-20 12:30:46 +00:00
os.Exit(1)
},
}
)
func init() {
rootCmd.AddCommand(serveCmd)
2019-09-16 06:52:58 +00:00
addServeFlags(serveCmd)
}