mirror of
https://github.com/tendermint/tendermint.git
synced 2026-03-27 12:05:02 +00:00
functionality in place for start kill terminate
This commit is contained in:
@@ -35,13 +35,13 @@ func (p *Provider) Setup() error {
|
||||
return nil
|
||||
}
|
||||
func (p Provider) StartTendermint(ctx context.Context, n *e2e.Node) error {
|
||||
panic("unimplemented")
|
||||
return ExecCompose(p.Testnet.Dir, "start", n.Name)
|
||||
}
|
||||
func (p Provider) TerminateTendermint(ctx context.Context, n *e2e.Node) error {
|
||||
panic("unimplemented")
|
||||
return ExecCompose(p.Testnet.Dir, "kill", "-s", "SIGTERM", n.Name)
|
||||
}
|
||||
func (p Provider) KillTendermint(ctx context.Context, n *e2e.Node) error {
|
||||
panic("unimplemented")
|
||||
return ExecCompose(p.Testnet.Dir, "kill", "-s", "SIGKILL", n.Name)
|
||||
}
|
||||
|
||||
// dockerComposeBytes generates a Docker Compose config file for a testnet and returns the
|
||||
|
||||
Reference in New Issue
Block a user