repart: don't mark image files generated with --empty=create executable

This commit is contained in:
Lennart Poettering 2020-09-16 17:51:25 +02:00
parent eb5e26112e
commit 5332d7c6ff
1 changed files with 1 additions and 1 deletions

View File

@ -3833,7 +3833,7 @@ static int find_root(char **ret, int *ret_fd) {
if (!s)
return log_oom();
fd = open(arg_node, O_RDONLY|O_CREAT|O_EXCL|O_CLOEXEC|O_NOFOLLOW, 0777);
fd = open(arg_node, O_RDONLY|O_CREAT|O_EXCL|O_CLOEXEC|O_NOFOLLOW, 0666);
if (fd < 0)
return log_error_errno(errno, "Failed to create '%s': %m", arg_node);