From: Zbigniew Jędrzejewski-Szmek Date: Wed, 9 Jun 2021 14:34:20 +0000 (+0200) Subject: shared/install: remove custom error handling in unit_file_preset_all() X-Git-Tag: v249-rc1~42^2~4 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=4a203a5177b7d9aa499221c315bc0e327a23b5cf;p=thirdparty%2Fsystemd.git shared/install: remove custom error handling in unit_file_preset_all() This had some purpose back in the day, but right now I cannot see what difference this makes. It's hard to keep the list of all possible errors up to date. So let's remove this, hopefully nothing breaks. --- diff --git a/src/shared/install.c b/src/shared/install.c index a97a4ef5c5c..1cae42df6bd 100644 --- a/src/shared/install.c +++ b/src/shared/install.c @@ -3370,17 +3370,11 @@ int unit_file_preset_all( if (!IN_SET(de->d_type, DT_LNK, DT_REG)) continue; - /* we don't pass changes[] in, because we want to handle errors on our own */ - r = preset_prepare_one(scope, &plus, &minus, &paths, de->d_name, &presets, NULL, 0); - if (r == -ERFKILL) - r = unit_file_changes_add(changes, n_changes, - UNIT_FILE_IS_MASKED, de->d_name, NULL); - else if (r == -ENOLINK) - r = unit_file_changes_add(changes, n_changes, - UNIT_FILE_IS_DANGLING, de->d_name, NULL); - else if (r == -EADDRNOTAVAIL) /* Ignore generated/transient units when applying preset */ - continue; - if (r < 0) + r = preset_prepare_one(scope, &plus, &minus, &paths, de->d_name, &presets, changes, n_changes); + if (r < 0 && + !IN_SET(r, -EEXIST, -ERFKILL, -EADDRNOTAVAIL, -EIDRM, -EUCLEAN, -ELOOP, -ENOENT)) + /* Ignore generated/transient/missing/invalid units when applying preset, propagate other errors. + * Coordinate with unit_file_dump_changes() above. */ return r; } }