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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bs9",
3
- "version": "1.5.4",
3
+ "version": "1.5.5",
4
4
  "description": "Bun Sentinel 9 - High-performance, non-root process manager for Bun",
5
5
  "type": "module",
6
6
  "main": "src/index.ts",
@@ -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) {