mirror of
https://github.com/rancher/os.git
synced 2025-07-03 10:06:13 +00:00
Create but do not start udev on system-docker
Eventually this container will be replaced with udev hotplug
This commit is contained in:
parent
130caa1abd
commit
e34c3a5e2d
@ -57,7 +57,7 @@ func getHash(containerCfg *config.ContainerConfig) (string, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func StartAndWait(dockerHost string, containerCfg *config.ContainerConfig) error {
|
func StartAndWait(dockerHost string, containerCfg *config.ContainerConfig) error {
|
||||||
container := NewContainer(dockerHost, containerCfg).start(true)
|
container := NewContainer(dockerHost, containerCfg).start(false, true)
|
||||||
return container.Err
|
return container.Err
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -187,12 +187,16 @@ func (c *Container) Parse() *Container {
|
|||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (c *Container) Create() *Container {
|
||||||
|
return c.start(true, false)
|
||||||
|
}
|
||||||
|
|
||||||
func (c *Container) Start() *Container {
|
func (c *Container) Start() *Container {
|
||||||
return c.start(false)
|
return c.start(false, false)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Container) StartAndWait() *Container {
|
func (c *Container) StartAndWait() *Container {
|
||||||
return c.start(true)
|
return c.start(false, true)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Container) Stage() *Container {
|
func (c *Container) Stage() *Container {
|
||||||
@ -356,7 +360,7 @@ func appendVolumesFrom(client *dockerClient.Client, containerCfg *config.Contain
|
|||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Container) start(wait bool) *Container {
|
func (c *Container) start(create_only, wait bool) *Container {
|
||||||
c.Lookup()
|
c.Lookup()
|
||||||
c.Stage()
|
c.Stage()
|
||||||
|
|
||||||
@ -416,6 +420,10 @@ func (c *Container) start(wait bool) *Container {
|
|||||||
hostConfig = opts.HostConfig
|
hostConfig = opts.HostConfig
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if create_only {
|
||||||
|
return c
|
||||||
|
}
|
||||||
|
|
||||||
if !c.Container.State.Running {
|
if !c.Container.State.Running {
|
||||||
if !created {
|
if !created {
|
||||||
err = c.renameOld(client, opts)
|
err = c.renameOld(client, opts)
|
||||||
|
@ -119,8 +119,14 @@ func runContainersFrom(startFrom string, cfg *config.Config, containerConfigs []
|
|||||||
}
|
}
|
||||||
|
|
||||||
if foundStart || startFrom == "" {
|
if foundStart || startFrom == "" {
|
||||||
|
|
||||||
|
if containerConfig.CreateOnly {
|
||||||
|
log.Infof("Creating [%d/%d] %s", i+1, len(containerConfigs), containerConfig.Id)
|
||||||
|
container.Create()
|
||||||
|
} else {
|
||||||
log.Infof("Running [%d/%d] %s", i+1, len(containerConfigs), containerConfig.Id)
|
log.Infof("Running [%d/%d] %s", i+1, len(containerConfigs), containerConfig.Id)
|
||||||
container.StartAndWait()
|
container.StartAndWait()
|
||||||
|
}
|
||||||
|
|
||||||
if container.Err != nil {
|
if container.Err != nil {
|
||||||
log.Errorf("Failed to run %v: %v", containerConfig.Id, container.Err)
|
log.Errorf("Failed to run %v: %v", containerConfig.Id, container.Err)
|
||||||
|
Loading…
Reference in New Issue
Block a user