aboutsummaryrefslogtreecommitdiff
path: root/schedule.ccl
diff options
context:
space:
mode:
Diffstat (limited to 'schedule.ccl')
-rw-r--r--schedule.ccl8
1 files changed, 7 insertions, 1 deletions
diff --git a/schedule.ccl b/schedule.ccl
index 8f76c39..63a13d0 100644
--- a/schedule.ccl
+++ b/schedule.ccl
@@ -1,13 +1,15 @@
-# Schedule definitions for thorn httpd
+# Schedule definitions for thorn HTTPD
# $Header$
SCHEDULE GROUP HTTP_Startup AT startup
{
+ OPTIONS: GLOBAL
} "HTTP daemon startup group"
SCHEDULE HTTP_StartServer in HTTP_Startup
{
LANG: C
+ OPTIONS: GLOBAL
} "Start HTTP server"
SCHEDULE GROUP HTTP_SetupPages in HTTP_Startup AFTER HTTP_StartServer
@@ -17,11 +19,13 @@ SCHEDULE GROUP HTTP_SetupPages in HTTP_Startup AFTER HTTP_StartServer
SCHEDULE HTTP_FirstServ in HTTP_Startup AFTER HTTP_SetupPages
{
LANG: C
+ OPTIONS: GLOBAL
} "Serve first pages at startup"
SCHEDULE HTTP_Work AT poststep BEFORE IOUtil_UpdateParFile
{
LANG: C
+ OPTIONS: GLOBAL
} "Working routine"
if(provide_pages)
@@ -29,10 +33,12 @@ if(provide_pages)
SCHEDULE HTTP_ContentWork AT poststep
{
LANG: C
+ OPTIONS: GLOBAL
} "Content Working routine"
}
SCHEDULE HTTP_Shutdown AT shutdown
{
LANG: C
+ OPTIONS: GLOBAL
} "HTTP daemon shutdown"