summaryrefslogtreecommitdiff
path: root/local.d
diff options
context:
space:
mode:
authorWilliam Hubbs <w.d.hubbs@gmail.com>2014-12-03 10:13:41 -0600
committerWilliam Hubbs <w.d.hubbs@gmail.com>2014-12-03 10:13:41 -0600
commit1267025fb76af18e31b2c7de16606abbb9b87ea3 (patch)
tree8cc3a36b1dd7e1438d05a293cae8eac572126a7c /local.d
parent30cc3cdb76a66c7c0f89a52db4e5cff77b570e31 (diff)
Diffstat (limited to 'local.d')
-rw-r--r--local.d/Makefile6
-rw-r--r--local.d/README14
2 files changed, 0 insertions, 20 deletions
diff --git a/local.d/Makefile b/local.d/Makefile
deleted file mode 100644
index 7a7d31dd..00000000
--- a/local.d/Makefile
+++ /dev/null
@@ -1,6 +0,0 @@
-DIR= ${LOCALDIR}
-CONF= README
-
-MK= ../mk
-include ${MK}/os.mk
-include ${MK}/scripts.mk
diff --git a/local.d/README b/local.d/README
deleted file mode 100644
index 352847b4..00000000
--- a/local.d/README
+++ /dev/null
@@ -1,14 +0,0 @@
-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.
-
-Keep in mind that files in this directory are processed sequencially,
-and the local service is not considered started or stopped until
-everything is processed, so if you have a process which takes a long
-time to run, it can delay your boot or shutdown processing.