From: Lennart Poettering Date: Tue, 13 Jan 2015 12:52:49 +0000 (+0100) Subject: import: make sure we don't mangle file ownerships with the local passwd database... X-Git-Tag: v219~534 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=6da023a048c7456c2ca849d9437a88817a1189d6;ds=sidebyside import: make sure we don't mangle file ownerships with the local passwd database when untarring --- diff --git a/src/import/import-dkr.c b/src/import/import-dkr.c index a3f390ca8..b54a1a6d9 100644 --- a/src/import/import-dkr.c +++ b/src/import/import-dkr.c @@ -493,7 +493,7 @@ static int dkr_import_job_run_tar(DkrImportJob *job) { if (null_fd != STDOUT_FILENO) safe_close(null_fd); - execlp("tar", "tar", "-C", job->temp_path, gzip ? "-xz" : "-x", NULL); + execlp("tar", "tar", "-C", job->temp_path, gzip ? "-xpz" : "-px", "--numeric-owner", NULL); _exit(EXIT_FAILURE); }