diff options
author | Danilo Sousa <dsgoncalves@uoldiveo.com> | 2016-02-16 14:18:07 -0200 |
---|---|---|
committer | Danilo Sousa <dsgoncalves@uoldiveo.com> | 2016-02-18 12:14:03 -0200 |
commit | e17356f22505f0aed88fd04c9925b8aeb2520e28 (patch) | |
tree | 73db9857b9edc3e9c736228bedaa80bf521941fd /lib | |
parent | 2e7dd813f8659e9418b65983b661b48a1aaf832e (diff) |
`Node#repo` should return the node group repository
Diffstat (limited to 'lib')
-rw-r--r-- | lib/oxidized/node.rb | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/lib/oxidized/node.rb b/lib/oxidized/node.rb index 7a278a9..a1504b9 100644 --- a/lib/oxidized/node.rb +++ b/lib/oxidized/node.rb @@ -24,7 +24,7 @@ module Oxidized @vars = opt[:vars] @stats = Stats.new @retry = 0 - @repo = Oxidized.config.output.git.repo + @repo = resolve_repo # model instance needs to access node instance @model.node = self @@ -170,5 +170,17 @@ module Oxidized Oxidized.mgr.model[model].new end + def resolve_repo + git = Oxidized.config.output.git + cfg_repo = git.repo + + if group && !git.single_repo? + basedir = File.dirname(cfg_repo) + File.join(basedir, "#{group}.git") + else + cfg_repo + end + end + end end |