]> git.ipfire.org Git - people/stevee/pakfire.git/commitdiff
mount: Increase size for /tmp in jail
authorMichael Tremer <michael.tremer@ipfire.org>
Tue, 21 Feb 2023 10:42:29 +0000 (10:42 +0000)
committerMichael Tremer <michael.tremer@ipfire.org>
Tue, 21 Feb 2023 10:42:29 +0000 (10:42 +0000)
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 <michael.tremer@ipfire.org>
src/libpakfire/mount.c

index 72ba4ac57fa97768e740799a6a7899c9ef4f6876..c08a1214eab6710ba13132d4691b327aa0b6a039 100644 (file)
@@ -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 },