From c5df67c6bc002a4e2f19871a080e097aba5775c7 Mon Sep 17 00:00:00 2001 From: Dusty Mabe Date: Wed, 13 Nov 2024 17:38:57 -0500 Subject: [PATCH] cmdlib: bump cache size to 30G With --- src/cmdlib.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cmdlib.sh b/src/cmdlib.sh index e1d037d3e7..2466be8470 100755 --- a/src/cmdlib.sh +++ b/src/cmdlib.sh @@ -602,7 +602,7 @@ runcompose_extensions() { # the cache disk. `runvm_with_cache_snapshot on` will set snapshotting to on. runvm_with_cache_snapshot() { local snapshot=$1; shift - local cache_size=${RUNVM_CACHE_SIZE:-20G} + local cache_size=${RUNVM_CACHE_SIZE:-30G} # "cache2" has an explicit label so we can find it in qemu easily if [ ! -f "${workdir}"/cache/cache2.qcow2 ]; then qemu-img create -f qcow2 cache2.qcow2.tmp "$cache_size"