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
+1 -1
View File
@@ -15,7 +15,7 @@ from bot_bottle.git_gate import GitGatePlan
from bot_bottle.orchestrator.client import RegisteredBottle
_MOD = "bot_bottle.backend.docker.consolidated_launch"
_UTIL = "bot_bottle.backend.bottle_provision"
_UTIL = "bot_bottle.backend.provision_bottle"
def _egress_plan() -> EgressPlan:
+1 -1
View File
@@ -17,7 +17,7 @@ from bot_bottle.git_gate import GitGatePlan
from bot_bottle.orchestrator.client import RegisteredBottle
_MOD = "bot_bottle.backend.macos_container.consolidated_launch"
_UTIL = "bot_bottle.backend.bottle_provision"
_UTIL = "bot_bottle.backend.provision_bottle"
def _egress_plan() -> EgressPlan:
@@ -6,7 +6,7 @@ import unittest
from pathlib import Path
from unittest.mock import Mock, patch
from bot_bottle.backend.gateway_provision import (
from bot_bottle.backend.provision_gateway import (
GatewayProvisionError,
deprovision_git_gate,
provision_git_gate,