diff options
author | Doug Rabson <dfr@rabson.org> | 2022-05-19 14:50:49 +0100 |
---|---|---|
committer | Doug Rabson <dfr@rabson.org> | 2022-08-30 16:32:24 +0100 |
commit | 0300271bf73d515393ac41f354a39889b07b88fc (patch) | |
tree | b2b46dd19bd7a1821217f06b3142998cbfd72520 | |
parent | 72f4c77139adf61bc39890e08ed9b86c365ae09b (diff) | |
download | podman-0300271bf73d515393ac41f354a39889b07b88fc.tar.gz podman-0300271bf73d515393ac41f354a39889b07b88fc.tar.bz2 podman-0300271bf73d515393ac41f354a39889b07b88fc.zip |
libpod/define: Make TypeBind a platform-specific constant
This allows us to redefine to the equivalent nullfs on FreeBSD.
[NO NEW TESTS NEEDED]
Signed-off-by: Doug Rabson <dfr@rabson.org>
-rw-r--r-- | libpod/define/mount.go | 2 | ||||
-rw-r--r-- | libpod/define/mount_freebsd.go | 8 | ||||
-rw-r--r-- | libpod/define/mount_linux.go | 8 | ||||
-rw-r--r-- | libpod/define/mount_unsupported.go | 8 |
4 files changed, 24 insertions, 2 deletions
diff --git a/libpod/define/mount.go b/libpod/define/mount.go index 1b0d019c8..db444fd83 100644 --- a/libpod/define/mount.go +++ b/libpod/define/mount.go @@ -1,8 +1,6 @@ package define const ( - // TypeBind is the type for mounting host dir - TypeBind = "bind" // TypeVolume is the type for named volumes TypeVolume = "volume" // TypeTmpfs is the type for mounting tmpfs diff --git a/libpod/define/mount_freebsd.go b/libpod/define/mount_freebsd.go new file mode 100644 index 000000000..e080c9ec6 --- /dev/null +++ b/libpod/define/mount_freebsd.go @@ -0,0 +1,8 @@ +//go:build freebsd + +package define + +const ( + // TypeBind is the type for mounting host dir + TypeBind = "nullfs" +) diff --git a/libpod/define/mount_linux.go b/libpod/define/mount_linux.go new file mode 100644 index 000000000..5ef848905 --- /dev/null +++ b/libpod/define/mount_linux.go @@ -0,0 +1,8 @@ +//go:build linux + +package define + +const ( + // TypeBind is the type for mounting host dir + TypeBind = "bind" +) diff --git a/libpod/define/mount_unsupported.go b/libpod/define/mount_unsupported.go new file mode 100644 index 000000000..cb8642fe2 --- /dev/null +++ b/libpod/define/mount_unsupported.go @@ -0,0 +1,8 @@ +//go:build !linux && !freebsd + +package define + +const ( + // TypeBind is the type for mounting host dir + TypeBind = "bind" +) |