diff options
author | Saku Ytti <saku@ytti.fi> | 2013-04-21 17:08:37 +0300 |
---|---|---|
committer | Saku Ytti <saku@ytti.fi> | 2013-04-21 17:08:37 +0300 |
commit | f715a419196c65ee0cc3b7d9e346aa2512c0cd21 (patch) | |
tree | 60b49fe2418eb15c5dd469cba5286b93f2b8f589 /lib/oxidized | |
parent | 5a4d2ce1a0380a47e51a9c7aa248e82a5ba5cd39 (diff) |
rename 'update' to 'store'
'store' is more logical, as we cannot know if output method guarantees
any version history which 'update' implies.
Diffstat (limited to 'lib/oxidized')
-rw-r--r-- | lib/oxidized/output/file.rb | 2 | ||||
-rw-r--r-- | lib/oxidized/output/git.rb | 2 | ||||
-rw-r--r-- | lib/oxidized/worker.rb | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/lib/oxidized/output/file.rb b/lib/oxidized/output/file.rb index b988c1a..66ad178 100644 --- a/lib/oxidized/output/file.rb +++ b/lib/oxidized/output/file.rb @@ -15,7 +15,7 @@ class OxFile < Output end end - def update node, data, opt={} + def store node, data, opt={} file = @cfg[:directory] if opt[:group] file = File.join File.dirname(file), opt[:group] diff --git a/lib/oxidized/output/git.rb b/lib/oxidized/output/git.rb index 019d83b..202893c 100644 --- a/lib/oxidized/output/git.rb +++ b/lib/oxidized/output/git.rb @@ -19,7 +19,7 @@ class Git < Output end end - def update file, data, opt={} + def store file, data, opt={} msg = opt[:msg] user = (opt[:user] or @cfg[:user]) email = (opt[:email] or @cfg[:email]) diff --git a/lib/oxidized/worker.rb b/lib/oxidized/worker.rb index 6966322..14cf2a5 100644 --- a/lib/oxidized/worker.rb +++ b/lib/oxidized/worker.rb @@ -26,8 +26,8 @@ module Oxidized msg = "update #{node.name}" msg += " from #{node.from}" if node.from msg += " with message '#{node.msg}'" if node.msg - node.output.new.update node.name, job.config, - :msg => msg, :user => node.user, :group => node.group + node.output.new.store node.name, job.config, + :msg => msg, :user => node.user, :group => node.group node.reset else Log.warn "#{node.name} status #{job.status}" |