summaryrefslogtreecommitdiff
path: root/conf.d
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
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')
-rw-r--r--conf.d/local18
-rw-r--r--conf.d/local.start5
-rw-r--r--conf.d/local.stop8
3 files changed, 18 insertions, 13 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
+}
diff --git a/conf.d/local.start b/conf.d/local.start
deleted file mode 100644
index 7a20c14..0000000
--- a/conf.d/local.start
+++ /dev/null
@@ -1,5 +0,0 @@
-# /etc/conf.d/local.start
-
-# This is a good place to load any misc programs
-# on startup (use &>/dev/null to hide output)
-
diff --git a/conf.d/local.stop b/conf.d/local.stop
deleted file mode 100644
index 7dc89f6..0000000
--- a/conf.d/local.stop
+++ /dev/null
@@ -1,8 +0,0 @@
-# /etc/conf.d/local.stop
-
-# This is a good place to unload any misc.
-# programs you started above.
-# For example, if you are using OSS and have
-# "/usr/local/bin/soundon" above, put
-# "/usr/local/bin/soundoff" here.
-