diff options
Diffstat (limited to 'local.d')
-rw-r--r-- | local.d/Makefile | 6 | ||||
-rw-r--r-- | local.d/README | 9 |
2 files changed, 15 insertions, 0 deletions
diff --git a/local.d/Makefile b/local.d/Makefile new file mode 100644 index 00000000..7a7d31dd --- /dev/null +++ b/local.d/Makefile @@ -0,0 +1,6 @@ +DIR= ${LOCALDIR} +CONF= README + +MK= ../mk +include ${MK}/os.mk +include ${MK}/scripts.mk diff --git a/local.d/README b/local.d/README new file mode 100644 index 00000000..d3c11566 --- /dev/null +++ b/local.d/README @@ -0,0 +1,9 @@ +This directory should contain programs or scripts which are to be run +when the local service is started or stopped. + +If a file in this directory is executable and it has a .start extension, +it will be run when the local service is started. If a file is +executable and it has a .stop extension, it will be run when the local +service is stopped. + +All files are processed in lexical order. |