656966c2c4
Add an abstract teardown() classmethod to BottleBackend — the inverse of setup(), surfaced as `./cli.py backend teardown [--backend=NAME]` (uninstall). Symmetric with setup: it prints the privileged commands / declarative config change to remove the host prerequisites. - firecracker: NixOS-aware — disable the flake module (or drop the import) and rebuild, or `firecracker-netpool.sh down` imperatively. - docker / macos-container: nothing to undo (no privileged host state); print a short note. Not called by the launch path or the test suite. Extends test_cli_backend for the new dispatch. Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com> Claude-Session: https://claude.ai/code/session_01WBMWTEtQdJ4W5UrWuLHCck
47 lines
1.5 KiB
Python
47 lines
1.5 KiB
Python
"""`backend` CLI command — generic host setup/status across backends.
|
|
|
|
`./cli.py backend setup [--backend=NAME]` provisions (or points at how
|
|
to provision) the chosen backend's one-time host prerequisites.
|
|
`./cli.py backend status [--backend=NAME]` reports readiness.
|
|
`./cli.py backend teardown [--backend=NAME]` undoes setup (uninstall).
|
|
|
|
All dispatch to the backend's `setup()` / `status()` / `teardown()`
|
|
classmethods, so there are no backend-specific commands — swapping
|
|
backends is just a different `--backend` (or `$BOT_BOTTLE_BACKEND`, or
|
|
the host default).
|
|
"""
|
|
|
|
from __future__ import annotations
|
|
|
|
import argparse
|
|
|
|
from ..backend import get_bottle_backend, known_backend_names
|
|
from ._common import PROG
|
|
|
|
|
|
def cmd_backend(args: list[str]) -> int:
|
|
parser = argparse.ArgumentParser(
|
|
prog=f"{PROG} backend",
|
|
description="Set up or check a backend's host prerequisites.",
|
|
)
|
|
parser.add_argument(
|
|
"action",
|
|
choices=("setup", "status", "teardown"),
|
|
help="setup: provision/print host prerequisites; status: report "
|
|
"readiness; teardown: undo setup (uninstall)",
|
|
)
|
|
parser.add_argument(
|
|
"--backend",
|
|
choices=known_backend_names(),
|
|
default=None,
|
|
help="backend to target (default: $BOT_BOTTLE_BACKEND or the host default)",
|
|
)
|
|
ns = parser.parse_args(args)
|
|
|
|
backend = get_bottle_backend(ns.backend)
|
|
if ns.action == "setup":
|
|
return backend.setup()
|
|
if ns.action == "teardown":
|
|
return backend.teardown()
|
|
return backend.status()
|