diff options
author | Dax Kelson <dkelson@gurulabs.com> | 2017-03-05 13:03:53 +0100 |
---|---|---|
committer | Martin Pitt <martinpitt@users.noreply.github.com> | 2017-03-05 13:03:53 +0100 |
commit | 055c521ad4e9d2f923e9373ac12e214a1e896cc7 (patch) | |
tree | 6285bb96e5f855e89e2fa64238c5015d2327859e /src/import/pull-job.c | |
parent | Merge pull request #5510 from phomes/accel-hwdb (diff) | |
download | systemd-055c521ad4e9d2f923e9373ac12e214a1e896cc7.tar.xz systemd-055c521ad4e9d2f923e9373ac12e214a1e896cc7.zip |
import: bump image size safety limit for machinectl pull (#5535)
We currenly use 40GB images in our environment
Diffstat (limited to '')
-rw-r--r-- | src/import/pull-job.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/import/pull-job.c b/src/import/pull-job.c index e550df2c57..70aaa5c291 100644 --- a/src/import/pull-job.c +++ b/src/import/pull-job.c @@ -527,7 +527,7 @@ int pull_job_new(PullJob **ret, const char *url, CurlGlue *glue, void *userdata) j->glue = glue; j->content_length = (uint64_t) -1; j->start_usec = now(CLOCK_MONOTONIC); - j->compressed_max = j->uncompressed_max = 8LLU * 1024LLU * 1024LLU * 1024LLU; /* 8GB */ + j->compressed_max = j->uncompressed_max = 64LLU * 1024LLU * 1024LLU * 1024LLU; /* 64GB safety limit */ j->url = strdup(url); if (!j->url) |