Skip to content

Commit

Permalink
Change linux runtime(w shim) to builtin
Browse files Browse the repository at this point in the history
Because of the plugin findings and having the default runtime builtin
this makes it much better for development and testing.

Signed-off-by: Michael Crosby <crosbymichael@gmail.com>
  • Loading branch information
crosbymichael committed Feb 24, 2017
1 parent 994aebc commit e693cad
Show file tree
Hide file tree
Showing 6 changed files with 4 additions and 15 deletions.
1 change: 1 addition & 0 deletions cmd/containerd/builtins.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ package main

// register containerd builtins here
import (
_ "github.com/docker/containerd/linux"
_ "github.com/docker/containerd/services/content"
_ "github.com/docker/containerd/services/execution"
)
7 changes: 0 additions & 7 deletions linux/Makefile

This file was deleted.

2 changes: 1 addition & 1 deletion linux/container.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main
package linux

import (
"github.com/docker/containerd"
Expand Down
5 changes: 0 additions & 5 deletions linux/main.go

This file was deleted.

2 changes: 1 addition & 1 deletion linux/runtime.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main
package linux

import (
"bytes"
Expand Down
2 changes: 1 addition & 1 deletion linux/shim.go
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
package main
package linux

import (
"fmt"
Expand Down

0 comments on commit e693cad

Please sign in to comment.