refactor(backend): verb-first names for the provisioning modules

Rename the module files to match their functions' verb-first names:
`bottle_provision.py` -> `provision_bottle.py`,
`gateway_provision.py` -> `provision_gateway.py` (and the test file to match).
Imports, docstrings, and the git_gate/service.py pointer updated.

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
2026-07-25 14:13:54 -04:00
parent 96ab8e15a2
commit 07c975636d
12 changed files with 12 additions and 12 deletions
@@ -40,7 +40,7 @@ from ...orchestrator.lifecycle import (
)
from ...orchestrator.reprovision import reprovision_bottles
from ...orchestrator.store.secret_store import ENV_VAR_SECRET_NAME
from ..bottle_provision import deprovision_bottle, provision_bottle
from ..provision_bottle import deprovision_bottle, provision_bottle
from . import cleanup, infra_vm, util
from .gateway import FirecrackerGateway
@@ -4,7 +4,7 @@
How the launcher stages files + runs commands in the running gateway: the
docker exec/cp equivalents over SSH (dropbear + the stable infra key). The
backend-neutral provisioning logic that drives it lives in
`backend.gateway_provision`.
`backend.provision_gateway`.
"""
from __future__ import annotations