fix(tests): track custom-html /var docroot
Some checks failed
continuous-integration/drone/push Build is failing

This commit is contained in:
autonomic-bot
2026-06-01 19:55:39 +00:00
parent d6a8f6f6b6
commit 7a7d6840b3
6 changed files with 8 additions and 8 deletions

View File

@ -1,7 +1,7 @@
"""custom-html — pre-op seed hooks (Phase 1e HC3). The orchestrator runs `pre_<op>(domain, meta)`
BEFORE it performs the op; the matching test_<op>.py asserts the post-op state (assertion-only).
nginx serves the volume at /srv/www/html, so the marker file survives an upgrade / a
nginx serves the volume at /var/www/html, so the marker file survives an upgrade / a
backup+restore of that volume and is both HTTP-readable and exec-readable."""
import os
@ -10,7 +10,7 @@ import sys
sys.path.insert(0, os.path.join(os.path.dirname(__file__), "..", "..", "runner"))
from harness import lifecycle # noqa: E402
MARKER_PATH = "/srv/www/html/ci-marker.txt"
MARKER_PATH = "/var/www/html/ci-marker.txt"
def _write(domain: str, val: str) -> None: