mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
daemon: NewDaemon(): fail early on non-supported platforms
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
parent
be628115ba
commit
10829dd222
1 changed files with 5 additions and 9 deletions
|
@ -68,10 +68,6 @@ import (
|
||||||
"google.golang.org/grpc/credentials/insecure"
|
"google.golang.org/grpc/credentials/insecure"
|
||||||
)
|
)
|
||||||
|
|
||||||
var (
|
|
||||||
errSystemNotSupported = errors.New("the Docker daemon is not supported on this platform")
|
|
||||||
)
|
|
||||||
|
|
||||||
// Daemon holds information about the Docker daemon.
|
// Daemon holds information about the Docker daemon.
|
||||||
type Daemon struct {
|
type Daemon struct {
|
||||||
id string
|
id string
|
||||||
|
@ -711,6 +707,11 @@ func (daemon *Daemon) IsSwarmCompatible() error {
|
||||||
// NewDaemon sets up everything for the daemon to be able to service
|
// NewDaemon sets up everything for the daemon to be able to service
|
||||||
// requests from the webserver.
|
// requests from the webserver.
|
||||||
func NewDaemon(ctx context.Context, config *config.Config, pluginStore *plugin.Store) (daemon *Daemon, err error) {
|
func NewDaemon(ctx context.Context, config *config.Config, pluginStore *plugin.Store) (daemon *Daemon, err error) {
|
||||||
|
// Verify the platform is supported as a daemon
|
||||||
|
if !platformSupported {
|
||||||
|
return nil, errors.New("the Docker daemon is not supported on this platform")
|
||||||
|
}
|
||||||
|
|
||||||
registryService, err := registry.NewService(config.ServiceOptions)
|
registryService, err := registry.NewService(config.ServiceOptions)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
@ -732,11 +733,6 @@ func NewDaemon(ctx context.Context, config *config.Config, pluginStore *plugin.S
|
||||||
// Setup the resolv.conf
|
// Setup the resolv.conf
|
||||||
setupResolvConf(config)
|
setupResolvConf(config)
|
||||||
|
|
||||||
// Verify the platform is supported as a daemon
|
|
||||||
if !platformSupported {
|
|
||||||
return nil, errSystemNotSupported
|
|
||||||
}
|
|
||||||
|
|
||||||
// Validate platform-specific requirements
|
// Validate platform-specific requirements
|
||||||
if err := checkSystem(); err != nil {
|
if err := checkSystem(); err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
|
|
Loading…
Add table
Reference in a new issue