chiark / gitweb /
systemctl: do not repeat hibernate/sleep attempts
[elogind.git] / src / systemctl / systemctl.c
index a6c7e91f5422404dd976fd717f274a514b341c63..9c4b9ed277395c0d530f39d5fe23097645ab40ae 100644 (file)
@@ -2966,7 +2966,7 @@ static int start_special(sd_bus *bus, char **args) {
              a == ACTION_HIBERNATE ||
              a == ACTION_HYBRID_SLEEP)) {
                 r = reboot_with_logind(bus, a);
-                if (r >= 0)
+                if (r >= 0 || IN_SET(r, -ENOTSUP, -EINPROGRESS))
                         return r;
         }