mirror of
https://github.com/google/sandboxed-api.git
synced 2024-03-22 13:11:30 +08:00
Show a warning when tmpfs size is not specified
PiperOrigin-RevId: 302441519 Change-Id: Ia4130c9067f00ed48065ea3b4854c844e7b88f85
This commit is contained in:
parent
8e83506380
commit
dadf55f647
|
@ -432,8 +432,14 @@ class PolicyBuilder final {
|
|||
// directories inside the namespace if needed.
|
||||
//
|
||||
// Calling this function will enable use of namespaces.
|
||||
PolicyBuilder& AddTmpfs(absl::string_view inside,
|
||||
size_t sz = 4 << 20 /* 4MiB */);
|
||||
ABSL_DEPRECATED(
|
||||
"Explicitly specify tmpfs size by using AddTmpfs(inside, sz) instead")
|
||||
PolicyBuilder& AddTmpfs(absl::string_view inside) {
|
||||
LOG(WARNING) << "Tmpfs size not specified, defaulting to 4 MiB";
|
||||
return AddTmpfs(inside, 4 << 20 /* 4 MiB */);
|
||||
}
|
||||
|
||||
PolicyBuilder& AddTmpfs(absl::string_view inside, size_t sz);
|
||||
|
||||
// Allows unrestricted access to the network by *not* creating a network
|
||||
// namespace. Note that this only disables the network namespace. To actually
|
||||
|
|
Loading…
Reference in New Issue
Block a user