mirror of
https://github.com/semaphoreui/semaphore.git
synced 2024-11-25 06:15:56 +01:00
d33d752bea
* fix(login): expire cookie on error with login
* feat: allows to unregister runner via cli
* feat(runner): add subcommands
* feat(runners): unregister command
* refactor(runner): move config to util.gol
* Revert "fix(login): expire cookie on error with login"
This reverts commit 6d726e3475
.
28 lines
464 B
Go
28 lines
464 B
Go
package cmd
|
|
|
|
import (
|
|
"github.com/ansible-semaphore/semaphore/services/runners"
|
|
"github.com/ansible-semaphore/semaphore/util"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
func init() {
|
|
runnerCmd.AddCommand(runnerStartCmd)
|
|
}
|
|
|
|
func runRunner() {
|
|
util.ConfigInit(configPath)
|
|
|
|
taskPool := runners.JobPool{}
|
|
|
|
taskPool.Run()
|
|
}
|
|
|
|
var runnerStartCmd = &cobra.Command{
|
|
Use: "start",
|
|
Short: "Run in runner mode",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
runRunner()
|
|
},
|
|
}
|