36 lines
702 B
Go
36 lines
702 B
Go
|
package cmd
|
||
|
|
||
|
import (
|
||
|
"fmt"
|
||
|
"os"
|
||
|
|
||
|
"github.com/spf13/cobra"
|
||
|
|
||
|
"github.com/drakkan/sftpgo/service"
|
||
|
)
|
||
|
|
||
|
var (
|
||
|
rotateLogCmd = &cobra.Command{
|
||
|
Use: "rotatelogs",
|
||
|
Short: "Signal to the running service to close the existing log file and immediately create a new one",
|
||
|
Run: func(cmd *cobra.Command, args []string) {
|
||
|
s := service.WindowsService{
|
||
|
Service: service.Service{
|
||
|
Shutdown: make(chan bool),
|
||
|
},
|
||
|
}
|
||
|
err := s.RotateLogFile()
|
||
|
if err != nil {
|
||
|
fmt.Printf("Error sending rotate log file signal to the service: %v\r\n", err)
|
||
|
os.Exit(1)
|
||
|
} else {
|
||
|
fmt.Printf("Rotate log file signal sent!\r\n")
|
||
|
}
|
||
|
},
|
||
|
}
|
||
|
)
|
||
|
|
||
|
func init() {
|
||
|
serviceCmd.AddCommand(rotateLogCmd)
|
||
|
}
|