From 0b03a86ae80560c4d95523d92e4ccff982ed4a77 Mon Sep 17 00:00:00 2001 From: Saku Ytti Date: Sat, 9 Aug 2014 15:59:16 +0300 Subject: update changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2567f51..f430e42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,7 @@ - BUGFIX: rescue @ssh.close when far end closes disgracefully (ALU ISAM) - FEATURE: Alcatel-Lucent ISAM 7302/7330 model added by @jalmargyyk - FEATURE: Huawei VRP model added by @jalmargyyk +- FEATURE: Support 'input' debug in config, ssh/telnet use it to write session log # 0.2.2 - BUGFIX: mark node as failure if unknown error is raised -- cgit v1.2.1 From cb850afb5c658d45e666969f292cf88d4ba2068d Mon Sep 17 00:00:00 2001 From: Saku Ytti Date: Mon, 11 Aug 2014 17:04:17 +0300 Subject: specify rugged version with 0.19.0 (in rubygem-rugged-0.19.0-4.fc20.x86_64) you'll get this: /usr/local/share/gems/gems/oxidized-0.2.2/lib/oxidized/output/git.rb:69:in `create': wrong argument type nil (expected Hash) (TypeError) from /usr/local/share/gems/gems/oxidized-0.2.2/lib/oxidized/output/git.rb:69:in `update_repo' from /usr/local/share/gems/gems/oxidized-0.2.2/lib/oxidized/output/git.rb:33:in `store' from /usr/local/share/gems/gems/oxidized-0.2.2/lib/oxidized/worker.rb:37:in `process' from /usr/local/share/gems/gems/oxidized-0.2.2/lib/oxidized/worker.rb:13:in `block in work' from /usr/local/share/gems/gems/oxidized-0.2.2/lib/oxidized/worker.rb:13:in `each' from /usr/local/share/gems/gems/oxidized-0.2.2/lib/oxidized/worker.rb:13:in `work' from /usr/local/share/gems/gems/oxidized-0.2.2/lib/oxidized/core.rb:36:in `run' from /usr/local/share/gems/gems/oxidized-0.2.2/lib/oxidized/core.rb:29:in `initialize' from /usr/local/share/gems/gems/oxidized-0.2.2/lib/oxidized/core.rb:11:in `new' from /usr/local/share/gems/gems/oxidized-0.2.2/lib/oxidized/core.rb:11:in `new' from /usr/local/share/gems/gems/oxidized-0.2.2/lib/oxidized/cli.rb:9:in `run' from /usr/local/share/gems/gems/oxidized-0.2.2/bin/oxidized:9:in `' from /usr/local/bin/oxidized:23:in `load' from /usr/local/bin/oxidized:23:in `
' --- lib/oxidized/output/git.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/oxidized/output/git.rb b/lib/oxidized/output/git.rb index 18c2cc1..a3f32af 100644 --- a/lib/oxidized/output/git.rb +++ b/lib/oxidized/output/git.rb @@ -1,6 +1,7 @@ module Oxidized class Git < Output begin + gem 'rugged', '~> 0.21.0' require 'rugged' rescue LoadError raise OxidizedError, 'rugged not found: sudo gem install rugged' -- cgit v1.2.1