diff options
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. - |