mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
3c177dc877
Signed-off-by: John Howard <jhoward@microsoft.com>
28 lines
430 B
Go
28 lines
430 B
Go
// +build !windows
|
|
|
|
package chrootarchive
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"os"
|
|
|
|
"github.com/docker/docker/pkg/reexec"
|
|
)
|
|
|
|
func init() {
|
|
reexec.Register("docker-applyLayer", applyLayer)
|
|
reexec.Register("docker-untar", untar)
|
|
}
|
|
|
|
func fatal(err error) {
|
|
fmt.Fprint(os.Stderr, err)
|
|
os.Exit(1)
|
|
}
|
|
|
|
// flush consumes all the bytes from the reader discarding
|
|
// any errors
|
|
func flush(r io.Reader) {
|
|
io.Copy(ioutil.Discard, r)
|
|
}
|