From: Michael Tremer Date: Tue, 21 Feb 2023 10:42:29 +0000 (+0000) Subject: mount: Increase size for /tmp in jail X-Git-Tag: 0.9.29~393 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=84e5948e4f6ab9f72a489f4f96479e25d7b4687b;p=pakfire.git mount: Increase size for /tmp in jail Some build processes require more temporary space than 1GiB, so I up this to 4GiB hoping that it will suffice for most builds. Signed-off-by: Michael Tremer --- diff --git a/src/libpakfire/mount.c b/src/libpakfire/mount.c index 72ba4ac57..c08a1214e 100644 --- a/src/libpakfire/mount.c +++ b/src/libpakfire/mount.c @@ -93,7 +93,7 @@ static const struct pakfire_mountpoint { // Create a new /tmp { "pakfire_tmp", "tmp", "tmpfs", - MS_NOSUID|MS_NODEV|MS_STRICTATIME, "mode=1777,size=1024m", }, + MS_NOSUID|MS_NODEV|MS_STRICTATIME, "mode=1777,size=4096m", }, // The end { NULL },