bs9 1.5.3 → 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/README.md CHANGED
@@ -14,7 +14,7 @@
14
14
 
15
15
  ```bash
16
16
  # One-click installer (installs Bun + BS9)
17
- curl -fsSL https://raw.githubusercontent.com/xarhang/bs9/setup.sh | bash
17
+ curl -fsSL https://raw.githubusercontent.com/xarhang/bs9/main/setup.sh | bash
18
18
 
19
19
  # Or manual install
20
20
  git clone https://github.com/xarhang/bs9.git
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bs9",
3
- "version": "1.5.3",
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) {