import: make sure we don't mangle file ownerships with the local passwd database when untarring

This commit is contained in:
Lennart Poettering 2015-01-13 13:52:49 +01:00
parent 6d0b55c272
commit 6da023a048

View file

@ -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);
}