From e95c98378ac2d34df864de4a9b785fd17defb77b Mon Sep 17 00:00:00 2001 From: =?utf8?q?Zbigniew=20J=C4=99drzejewski-Szmek?= Date: Sat, 25 Oct 2014 15:15:28 -0400 Subject: [PATCH 1/1] systemctl: do not ignore errors in symlink removal On an ro fs, systemctl disable ... would fail silently. --- src/shared/install.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/shared/install.c b/src/shared/install.c index 0d7c30e29..035b44cc5 100644 --- a/src/shared/install.c +++ b/src/shared/install.c @@ -1679,7 +1679,7 @@ int unit_file_disable( r = install_context_mark_for_removal(&c, &paths, &remove_symlinks_to, config_path, root_dir); q = remove_marked_symlinks(remove_symlinks_to, config_path, changes, n_changes, files); - if (r == 0) + if (r >= 0) r = q; return r; -- 2.30.2