From 44386fc156bfa2d623567ff7f7c8f313cfafb9bc Mon Sep 17 00:00:00 2001 From: Lukas Nykryn Date: Mon, 15 Oct 2012 14:51:27 +0200 Subject: [PATCH] systemctl: don't mangle name when it is a path systemctl enable, disable, ... can also accept full path and in this case we don't need to alter it. https://bugzilla.redhat.com/show_bug.cgi?id=866346 --- src/systemctl/systemctl.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/systemctl/systemctl.c b/src/systemctl/systemctl.c index d1fbb78e6..7d6a6a24f 100644 --- a/src/systemctl/systemctl.c +++ b/src/systemctl/systemctl.c @@ -3594,7 +3594,15 @@ static int mangle_names(char **original_names, char ***mangled_names) { i = l; STRV_FOREACH(name, original_names) { - *i = unit_name_mangle(*name); + + /* When enabling units qualified path names are OK, + * too, hence allow them explicitly. */ + + if (is_path(*name)) + *i = strdup(*name); + else + *i = unit_name_mangle(*name); + if (!*i) { strv_free(l); return log_oom(); -- 2.30.2