Vincent Batts
9a67c61b15
This will make the packaages/components individually more consumable Signed-off-by: Vincent Batts <vbatts@hashbangbash.com>
28 lines
461 B
Go
28 lines
461 B
Go
// +build !windows
|
|
|
|
package chrootarchive
|
|
|
|
import (
|
|
"fmt"
|
|
"io"
|
|
"io/ioutil"
|
|
"os"
|
|
|
|
"github.com/containers/pkg/reexec"
|
|
)
|
|
|
|
func init() {
|
|
reexec.Register("storage-applyLayer", applyLayer)
|
|
reexec.Register("storage-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) (bytes int64, err error) {
|
|
return io.Copy(ioutil.Discard, r)
|
|
}
|