]> git.ipfire.org Git - thirdparty/systemd.git/blobdiff - src/machine/image.c
machined: make image read-only check indepenednt on own privs
[thirdparty/systemd.git] / src / machine / image.c
index 1574adf30b1531dac024bded9a5784e8499679e1..8a119e5db71abea5b315507b1523d8a5eab6ad71 100644 (file)
@@ -112,7 +112,7 @@ static int image_make(
 
         read_only =
                 (path && path_startswith(path, "/usr")) ||
-                faccessat(dfd, filename, W_OK, AT_EACCESS) < 0;
+                (faccessat(dfd, filename, W_OK, AT_EACCESS) < 0 && errno == EROFS);
 
         if (S_ISDIR(st.st_mode)) {