Update description
This commit is contained in:
+8
-8
@@ -174,7 +174,7 @@ def plugin_install(name: str) -> None:
|
||||
install_bundled_plugin(name, bundled_dir, plugins_dir)
|
||||
console.print(f"[green]Installed:[/green] {name}")
|
||||
console.print(f" Enable: [dim]pyra plugin enable {name}[/dim]")
|
||||
console.print(f" Confirm: [dim]pyra plugin setup {name}[/dim]")
|
||||
console.print(f" Configure: [dim]pyra plugin setup {name}[/dim]")
|
||||
except FileNotFoundError as exc:
|
||||
console.print(f"[red]Error:[/red] {exc}")
|
||||
except Exception as exc:
|
||||
@@ -269,40 +269,40 @@ def daemon() -> None:
|
||||
@daemon.command("start")
|
||||
def daemon_start() -> None:
|
||||
"""Start the Pyra daemon in the background."""
|
||||
console.print("[yellow]Daemon (Stage 2.4) is not yet implemented.[/yellow]")
|
||||
console.print("[yellow]Daemon (Stage 6) is not yet implemented.[/yellow]")
|
||||
|
||||
|
||||
@daemon.command("stop")
|
||||
def daemon_stop() -> None:
|
||||
"""Stop the running Pyra daemon."""
|
||||
console.print("[yellow]Daemon (Stage 2.4) is not yet implemented.[/yellow]")
|
||||
console.print("[yellow]Daemon (Stage 6) is not yet implemented.[/yellow]")
|
||||
|
||||
|
||||
@daemon.command("status")
|
||||
def daemon_status() -> None:
|
||||
"""Show daemon status."""
|
||||
console.print("[yellow]Daemon (Stage 2.4) is not yet implemented.[/yellow]")
|
||||
console.print("[yellow]Daemon (Stage 6) is not yet implemented.[/yellow]")
|
||||
|
||||
|
||||
@daemon.command("restart")
|
||||
def daemon_restart() -> None:
|
||||
"""Restart the Pyra daemon."""
|
||||
console.print("[yellow]Daemon (Stage 2.4) is not yet implemented.[/yellow]")
|
||||
console.print("[yellow]Daemon (Stage 6) is not yet implemented.[/yellow]")
|
||||
|
||||
|
||||
@daemon.command("install")
|
||||
def daemon_install() -> None:
|
||||
"""Install Pyra as a system service (launchd/systemd)."""
|
||||
console.print("[yellow]Daemon service install (Stage 2.4) is not yet implemented.[/yellow]")
|
||||
console.print("[yellow]Daemon service install (Stage 6) is not yet implemented.[/yellow]")
|
||||
|
||||
|
||||
@daemon.command("uninstall")
|
||||
def daemon_uninstall() -> None:
|
||||
"""Remove the Pyra system service."""
|
||||
console.print("[yellow]Daemon service uninstall (Stage 2.4) is not yet implemented.[/yellow]")
|
||||
console.print("[yellow]Daemon service uninstall (Stage 6) is not yet implemented.[/yellow]")
|
||||
|
||||
|
||||
@daemon.command("run", hidden=True)
|
||||
def daemon_run() -> None:
|
||||
"""Run daemon in foreground (used by service manager)."""
|
||||
console.print("[yellow]Daemon (Stage 2.4) is not yet implemented.[/yellow]")
|
||||
console.print("[yellow]Daemon (Stage 6) is not yet implemented.[/yellow]")
|
||||
|
||||
Reference in New Issue
Block a user