Merge pull request #1224 from epilatow/solaris.cc.20170719.0
Add solaris build support
This commit is contained in:
14
server/server_solaris.go
Normal file
14
server/server_solaris.go
Normal file
@@ -0,0 +1,14 @@
|
||||
package server
|
||||
|
||||
import "context"
|
||||
|
||||
const (
|
||||
// DefaultAddress is the default unix socket address
|
||||
DefaultAddress = "/var/run/containerd/containerd.sock"
|
||||
// DefaultDebuggAddress is the default unix socket address for pprof data
|
||||
DefaultDebugAddress = "/var/run/containerd/debug.sock"
|
||||
)
|
||||
|
||||
func apply(_ context.Context, _ *Config) error {
|
||||
return nil
|
||||
}
|
||||
@@ -1,4 +1,4 @@
|
||||
// +build !linux,!windows
|
||||
// +build !linux,!windows,!solaris
|
||||
|
||||
package server
|
||||
|
||||
|
||||
Reference in New Issue
Block a user