StartWithBusybox will first start the daemon with Daemon.Start() then save the busybox image from the main daemon and load it into this Daemon instance.
(ctx context.Context, t testing.TB, arg ...string)
| 679 | // StartWithBusybox will first start the daemon with Daemon.Start() |
| 680 | // then save the busybox image from the main daemon and load it into this Daemon instance. |
| 681 | func (d *Daemon) StartWithBusybox(ctx context.Context, t testing.TB, arg ...string) { |
| 682 | t.Helper() |
| 683 | d.Start(t, arg...) |
| 684 | d.LoadBusybox(ctx, t) |
| 685 | } |
| 686 | |
| 687 | // Kill will send a SIGKILL to the daemon |
| 688 | func (d *Daemon) Kill() error { |