diff options
| author | Steve Kemp <steve@steve.org.uk> | 2012-11-23 14:57:52 +0000 | 
|---|---|---|
| committer | Steve Kemp <steve@steve.org.uk> | 2012-11-23 14:57:52 +0000 | 
| commit | 017e20155e9dc40e4a006df862804b3fbd1acefd (patch) | |
| tree | 9192c3b8c97179d50776854be8741bbbfd09f28b /bin | |
| parent | 050ebab1146a1d8607513ce67ddfe0821afce5a2 (diff) | |
  Read the server address:port from the settings object.  Along with the filename
 if appropriate for logging.
Diffstat (limited to 'bin')
| -rwxr-xr-x | bin/custodian-dequeue | 10 | ||||
| -rwxr-xr-x | bin/custodian-enqueue | 16 | ||||
| -rwxr-xr-x | bin/custodian-queue | 15 | 
3 files changed, 35 insertions, 6 deletions
| diff --git a/bin/custodian-dequeue b/bin/custodian-dequeue index 2d907f4..e33e253 100755 --- a/bin/custodian-dequeue +++ b/bin/custodian-dequeue @@ -55,6 +55,7 @@ require 'getoptlong'  #  # Our code.  # +require 'custodian/settings.rb'  require 'custodian/worker.rb' @@ -65,11 +66,16 @@ require 'custodian/worker.rb'  #  if __FILE__ == $0 then -  $SERVER  = "127.0.0.1:11300" -  $LOGFILE = "custodian-dequeue.log"    $help    = false    $manual  = false +  # +  #  The beanstalkd server address, and logfile. +  # +  settings = Custodian::Settings.instance() +  $SERVER  = settings.queue_server +  $LOGFILE = setttings.log_file +    begin      opts = GetoptLong.new(                            [ "--help",    "-h", GetoptLong::NO_ARGUMENT ], diff --git a/bin/custodian-enqueue b/bin/custodian-enqueue index ad8796f..3a9ac7f 100755 --- a/bin/custodian-enqueue +++ b/bin/custodian-enqueue @@ -50,12 +50,17 @@  # -#  Modules we require +# Standard modules  #  require 'beanstalk-client' -require 'custodian/parser'  require 'getoptlong' +# +# Our code. +# +require 'custodian/parser' +require 'custodian/settings' +  # @@ -65,7 +70,12 @@ if __FILE__ == $0 then    $help   = false    $manual = false -  $SERVER = "127.0.0.1:11300" + +  # +  #  The beanstalkd server address. +  # +  settings = Custodian::Settings.instance() +  $SERVER  = settings.queue_server    begin      opts = GetoptLong.new( diff --git a/bin/custodian-queue b/bin/custodian-queue index e75b5cc..cb4c3ce 100755 --- a/bin/custodian-queue +++ b/bin/custodian-queue @@ -38,10 +38,18 @@ +# +# Standard modules +#  require 'beanstalk-client'  require 'getoptlong' +# +# Our code +# +require 'custodian/settings' +  # @@ -49,13 +57,18 @@ require 'getoptlong'  #  if __FILE__ == $0 then -  $SERVER  = "127.0.0.1:11300"    $FLUSH   = false    $STATS   = false    $help    = false    $manual  = false    $MONITOR = false +  # +  #  The beanstalkd server address. +  # +  settings = Custodian::Settings.instance() +  $SERVER  = settings.queue_server +    begin      opts = GetoptLong.new(                            [ "--flush",   "-f", GetoptLong::NO_ARGUMENT ], | 
