mirror of
https://github.com/systemd/systemd.git
synced 2025-03-19 22:50:17 +03:00
systemctl: fix exit statuses from is-active/is-failed
This was inadvertantly disturbed in e3e0314b when glob support was added.
This commit is contained in:
parent
c8a202b7d4
commit
5a1aece581
@ -2511,14 +2511,16 @@ static int start_special(sd_bus *bus, char **args) {
|
||||
static int check_unit_generic(sd_bus *bus, int code, const char *good_states, char **args) {
|
||||
_cleanup_strv_free_ char **names = NULL;
|
||||
char **name;
|
||||
int r = code;
|
||||
int r;
|
||||
|
||||
assert(bus);
|
||||
assert(args);
|
||||
|
||||
r = expand_names(bus, args, NULL, &names);
|
||||
if (r < 0)
|
||||
if (r < 0) {
|
||||
log_error("Failed to expand names: %s", strerror(-r));
|
||||
return r;
|
||||
}
|
||||
|
||||
STRV_FOREACH(name, names) {
|
||||
int state;
|
||||
@ -2526,8 +2528,8 @@ static int check_unit_generic(sd_bus *bus, int code, const char *good_states, ch
|
||||
state = check_one_unit(bus, *name, good_states, arg_quiet);
|
||||
if (state < 0)
|
||||
return state;
|
||||
if (state > 0)
|
||||
r = 0;
|
||||
if (state == 0)
|
||||
r = code;
|
||||
}
|
||||
|
||||
return r;
|
||||
|
Loading…
x
Reference in New Issue
Block a user