We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
START_CRON
1 parent 395863e commit dcec9c2Copy full SHA for dcec9c2
php/shared/usr/local/share/env/40-stack
@@ -18,8 +18,10 @@ export APP_GROUP=${APP_GROUP:-www-data}
18
export START_MODE=${START_MODE:-web}
19
declare "START_MODE_${START_MODE^^}=true"
20
21
-START_CRON="$(convert_to_boolean_string "${START_MODE_CRON:-false}")"
22
-export START_CRON
+if [ ! -n "${START_CRON:-}" ]; then
+ START_CRON="$(convert_to_boolean_string "${START_MODE_CRON:-false}")"
23
+ export START_CRON
24
+fi
25
26
APP_ENDPOINT_REWRITE="$(convert_to_boolean_string "${APP_ENDPOINT_REWRITE-true}")"
27
export APP_ENDPOINT_REWRITE
0 commit comments