diff options
Diffstat (limited to '')
-rwxr-xr-x | build/shim/shim.php (renamed from shim/shim.php) | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shim/shim.php b/build/shim/shim.php index eb84412..0c91513 100755 --- a/shim/shim.php +++ b/build/shim/shim.php @@ -1,9 +1,9 @@ -#!/usr/bin/env php +#!/usr/bin/env php84 <?php /* Copyright (c) 2024 Freya Murphy */ function wait_until_ready() { while (TRUE) { - if (file_exists("/status/ready")) { + if (file_exists("/var/run/crimson/db-ready")) { echo "database ready!\n"; break; } |