polkit_agent_open_maybe();
+ r = 0;
+
STRV_FOREACH(name, strv_skip(argv, 1)) {
_cleanup_(sd_bus_error_free) sd_bus_error error = SD_BUS_ERROR_NULL;
uint32_t id;
q = bus_call_method(bus, bus_systemd_mgr, "CancelJob", &error, NULL, "u", id);
if (q < 0) {
- log_error_errno(q, "Failed to cancel job %"PRIu32": %s", id, bus_error_message(&error, q));
- if (r == 0)
- r = q;
+ log_warning_errno(q, "Failed to cancel job %"PRIu32", ignoring: %s",
+ id, bus_error_message(&error, q));
+ RET_GATHER(r, q);
}
}
#include "systemctl-util.h"
#include "systemctl.h"
-static int check_unit_generic(int code, const UnitActiveState good_states[], int nb_states, char **args) {
+static int check_unit_generic(int code, const UnitActiveState good_states[], size_t nb_states, char **args) {
_cleanup_strv_free_ char **names = NULL;
UnitActiveState active_state;
sd_bus *bus;
if (!arg_quiet)
puts(unit_active_state_to_string(active_state));
- for (int i = 0; i < nb_states; ++i)
- if (good_states[i] == active_state) {
+ FOREACH_ARRAY(good_state, good_states, nb_states)
+ if (active_state == *good_state) {
ok = true;
break;
}
not_found = false;
}
- /* We use LSB code 4 ("program or service status is unknown")
- * when the corresponding unit file doesn't exist. */
+ /* We use LSB code 4 ("program or service status is unknown") when the corresponding unit file doesn't exist. */
return ok ? EXIT_SUCCESS : not_found ? EXIT_PROGRAM_OR_SERVICES_STATUS_UNKNOWN : code;
}
int verb_is_active(int argc, char *argv[], void *userdata) {
+
static const UnitActiveState states[] = {
UNIT_ACTIVE,
UNIT_RELOADING,
}
int verb_is_failed(int argc, char *argv[], void *userdata) {
+
static const UnitActiveState states[] = {
UNIT_FAILED,
};
if (r < 0)
return log_error_errno(r, "Failed to get file links for %s: %m", name);
- for (size_t i = 0; i < n_changes; i++)
- if (changes[i].type == INSTALL_CHANGE_UNLINK)
- printf(" %s\n", changes[i].path);
+ FOREACH_ARRAY(c, changes, n_changes)
+ if (c->type == INSTALL_CHANGE_UNLINK)
+ printf(" %s\n", c->path);
return 0;
}