bs9 1.5.4 → 1.5.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/commands/status.ts +1 -1
package/package.json
CHANGED
package/src/commands/status.ts
CHANGED
|
@@ -240,7 +240,7 @@ async function getLinuxServices(): Promise<ServiceStatus[]> {
|
|
|
240
240
|
const platformInfo = getPlatformInfo();
|
|
241
241
|
|
|
242
242
|
try {
|
|
243
|
-
const listOutput = execSync("systemctl --user list-units --type=service --no-pager --no-legend", { encoding: "utf-8" });
|
|
243
|
+
const listOutput = execSync("systemctl --user list-units --type=service --all --no-pager --no-legend", { encoding: "utf-8" });
|
|
244
244
|
const lines = listOutput.split("\n").filter(line => line.includes(".service"));
|
|
245
245
|
|
|
246
246
|
for (const line of lines) {
|