From 1d505f6875d27dccafb777853a51045f82888f00 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Mon, 20 May 2019 10:56:00 -0400 Subject: Update vendor of buildah and containers/images Mainly add support for podman build using --overlay mounts. Updates containers/image also adds better support for new registries.conf file. Signed-off-by: Daniel J Walsh --- vendor/github.com/etcd-io/bbolt/bolt_linux.go | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 vendor/github.com/etcd-io/bbolt/bolt_linux.go (limited to 'vendor/github.com/etcd-io/bbolt/bolt_linux.go') diff --git a/vendor/github.com/etcd-io/bbolt/bolt_linux.go b/vendor/github.com/etcd-io/bbolt/bolt_linux.go new file mode 100644 index 000000000..7707bcacf --- /dev/null +++ b/vendor/github.com/etcd-io/bbolt/bolt_linux.go @@ -0,0 +1,10 @@ +package bbolt + +import ( + "syscall" +) + +// fdatasync flushes written data to a file descriptor. +func fdatasync(db *DB) error { + return syscall.Fdatasync(int(db.file.Fd())) +} -- cgit v1.2.3-54-g00ecf