summaryrefslogtreecommitdiff
path: root/conf.d/local
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2007-12-14 14:12:38 +0000
committerRoy Marples <roy@marples.name>2007-12-14 14:12:38 +0000
commit9f2403dffae514dca431828014a2dc9c9de4e61f (patch)
treebc1bd6ae83589f729a3bf7ca6d5ab592cbec56fd /conf.d/local
parenta3db3bac6242ff29871161620d0449125b3262aa (diff)
downloadopenrc-9f2403dffae514dca431828014a2dc9c9de4e61f.tar.gz
openrc-9f2403dffae514dca431828014a2dc9c9de4e61f.tar.bz2
openrc-9f2403dffae514dca431828014a2dc9c9de4e61f.tar.xz
Remove Gentoo copyright from all files that I know I have written
Diffstat (limited to 'conf.d/local')
-rw-r--r--conf.d/local18
1 files changed, 18 insertions, 0 deletions
diff --git a/conf.d/local b/conf.d/local
new file mode 100644
index 0000000..97dbbcc
--- /dev/null
+++ b/conf.d/local
@@ -0,0 +1,18 @@
+# Here is where you can put anything you need to start
+# that there is not an init script for.
+
+local_start() {
+ # This is a good place to load any misc programs
+ # on startup (use &>/dev/null to hide output)
+
+ # We should always return 0
+ return 0
+}
+
+local_stop() {
+ # This is a good place to unload any misc.
+ # programs you started above.
+
+ # We should always return 0
+ return 0
+}