From 09f3ebf820aa0fc9492f2f97f536898dbf3b04c7 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Mon, 23 Sep 2024 11:23:44 -0500 Subject: [PATCH 1/2] Fix out-of-date README --- README.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e0a546b..160cca6 100644 --- a/README.md +++ b/README.md @@ -12,9 +12,6 @@ Contents ### Startup ### -The startup order of scripts in this image is as follows: - -1. `/usr/local/sbin/image_init.sh` - To be replaced by descendant images, if necessary -1. `/usr/local/sbin/pod_init.sh` - To be replaced by descendant images, if necessary -1. `/usr/local/sbin/image_post_init.sh` - To be replaced by descendant images, if necessary -1. Supervisor +Any shell files matching `/etc/osg/image-init.d/*.sh` will be sourced +on startup, in lexicographic order, before starting Supervisor. +Descendant images should add files there to perform initialization tasks. From 53fcc37f5cfeb77669eeb49888a9710146b74803 Mon Sep 17 00:00:00 2001 From: Matyas Selmeci Date: Mon, 23 Sep 2024 11:51:34 -0500 Subject: [PATCH 2/2] Update README.md Co-authored-by: Brian Lin --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 160cca6..aa35200 100644 --- a/README.md +++ b/README.md @@ -14,4 +14,4 @@ Contents Any shell files matching `/etc/osg/image-init.d/*.sh` will be sourced on startup, in lexicographic order, before starting Supervisor. -Descendant images should add files there to perform initialization tasks. +Descendant images should add files there to perform runtime initialization tasks.