diff options
author | Roy Marples <roy@marples.name> | 2007-12-14 14:12:38 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-12-14 14:12:38 +0000 |
commit | 9f2403dffae514dca431828014a2dc9c9de4e61f (patch) | |
tree | bc1bd6ae83589f729a3bf7ca6d5ab592cbec56fd /conf.d | |
parent | a3db3bac6242ff29871161620d0449125b3262aa (diff) |
Remove Gentoo copyright from all files that I know I have written
Diffstat (limited to 'conf.d')
-rw-r--r-- | conf.d/local | 18 | ||||
-rw-r--r-- | conf.d/local.start | 5 | ||||
-rw-r--r-- | conf.d/local.stop | 8 |
3 files changed, 18 insertions, 13 deletions
diff --git a/conf.d/local b/conf.d/local new file mode 100644 index 00000000..97dbbccd --- /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 7a20c142..00000000 --- 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 7dc89f63..00000000 --- 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. - |