From: Tom Hughes Date: Sat, 5 Jan 2008 16:16:36 +0000 (+0000) Subject: Update GPX daemon control script to match current template from the X-Git-Tag: live~8015 X-Git-Url: https://git.openstreetmap.org/rails.git/commitdiff_plain/dffd645c5086249fd546886df2c50f2437ac4fca?hp=5bf4ce35c0a8c2f8fa468ab6271e7bd1d8cf97b3;ds=sidebyside Update GPX daemon control script to match current template from the daemons plugin. --- diff --git a/lib/daemons/gpx_import_ctl b/lib/daemons/gpx_import_ctl index 5730005a6..32c5f34ab 100755 --- a/lib/daemons/gpx_import_ctl +++ b/lib/daemons/gpx_import_ctl @@ -3,13 +3,18 @@ require 'rubygems' require "daemons" require 'yaml' require 'erb' -require 'active_support' + +class Hash + def with_symbols! + self.keys.each{|key| self[key.to_s.to_sym] = self[key] }; self + end +end options = YAML.load( ERB.new( IO.read( File.dirname(__FILE__) + "/../../config/daemons.yml" - )).result).with_indifferent_access + )).result).with_symbols! options[:dir_mode] = options[:dir_mode].to_sym -Daemons.run File.dirname(__FILE__) + '/gpx_import.rb', options \ No newline at end of file +Daemons.run File.dirname(__FILE__) + '/gpx_import.rb', options