We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d40c6 commit 0f20c6fCopy full SHA for 0f20c6f
extensions/systemd/systemd.js
@@ -72,7 +72,8 @@ class SystemdProcessManager extends cli.ProcessManager {
72
return true;
73
} catch (e) {
74
// Systemd prints out "inactive" if service isn't running
75
- if (!e.message.match(/inactive/)) {
+ // or "activating" if service hasn't completely started yet
76
+ if (!e.message.match(/inactive|activating/)) {
77
throw e;
78
}
79
0 commit comments