From: Franck Bui Date: Wed, 20 Jun 2018 16:09:38 +0000 (+0200) Subject: systemctl: mask always reports the same unit names when different unknown units are... X-Git-Tag: v239~16 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=25c59b5d8565ec714a561badc4d57f86ae265b61;p=platform%2Fupstream%2Fsystemd.git systemctl: mask always reports the same unit names when different unknown units are passed Before this patch: # systemctl --runtime mask abuild.mount does-not-exist.mount does-also-not-exist.mount Unit abuild.mount does not exist, proceeding anyway. Unit abuild.mount does not exist, proceeding anyway. Unit abuild.mount does not exist, proceeding anyway. Created symlink /run/systemd/system/abuild.mount → /dev/null. Created symlink /run/systemd/system/does-not-exist.mount → /dev/null. Created symlink /run/systemd/system/does-also-not-exist.mount → /dev/null. After this patch: # systemctl --runtime mask abuild.mount does-not-exist.mount does-also-not-exist.mount Unit abuild.mount does not exist, proceeding anyway. Unit does-not-exist.mount does not exist, proceeding anyway. Unit does-also-not-exist.mount does not exist, proceeding anyway. Created symlink /run/systemd/system/abuild.mount → /dev/null. Created symlink /run/systemd/system/does-not-exist.mount → /dev/null. Created symlink /run/systemd/system/does-also-not-exist.mount → /dev/null. --- diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index d673223..f072ad0 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -6163,7 +6163,7 @@ static int enable_unit(int argc, char *argv[], void *userdata) { if (r < 0) return r; if (r == 0) - log_notice("Unit %s does not exist, proceeding anyway.", *names); + log_notice("Unit %s does not exist, proceeding anyway.", *name); } }