logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>
commit: 26552a928f3bc10b8bfeb2c7ac1daf801ea15b38
parent e86db47b6ee40d68e26866dd15e8637f64d6d778
Author: Andrius Štikonas <andrius@stikonas.eu>
Date:   Sat, 20 May 2023 12:45:56 +0100

Increase disk size to 16G.

Diffstat:

Mlib/tmpdir.py2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/tmpdir.py b/lib/tmpdir.py @@ -69,7 +69,7 @@ class Tmpdir: os.mkdir(sys_path) return sys_path - def add_disk(self, name, size="8G", filesystem="ext4"): + def add_disk(self, name, size="16G", filesystem="ext4"): """Add a disk""" disk_path = os.path.join(self.path, f"{name}.img") self._disks[name] = create_disk(disk_path, "msdos", filesystem, size)