Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-06-22 | rubycop fixes | Saku Ytti | |
2018-06-22 | ehh what can you do | Saku Ytti | |
2018-06-22 | reduce http output smell | Saku Ytti | |
2018-06-22 | remove csv smell | Saku Ytti | |
2018-06-22 | remove worker smell | Saku Ytti | |
2018-06-22 | remove source/http load smells | Saku Ytti | |
2018-06-22 | remove SSH::connect smell | Saku Ytti | |
2018-06-22 | Remove resolve_repo smells | Saku Ytti | |
2018-06-22 | enable SSH logging if input logging is true | Saku Ytti | |
2018-06-21 | added telnet password prompt detection for Netgears. (#1413) | KodApa85 | |
Tested on Netgear M5300's running firmware 10.0.0.53, 11.0.0.23 & 11.0.0.31 | |||
2018-06-19 | Unintentional config changes in legacy xos, closes #1348 (#1362) | Bartek | |
2018-06-17 | document convenience methods (#1407) | Wild Kat | |
2018-06-17 | add monkey patching to ruby API docs (#1406) | Wild Kat | |
2018-06-17 | lint model notes markdown (#1405) | Wild Kat | |
2018-06-16 | bump docker to phusion/baseimage:0.10.1 (#1403) | Wild Kat | |
2018-06-14 | Scrub uptime in ciscosmb more carefully, closes #1398 (#1400) | Wild Kat | |
Scrub uptime in ciscosmb more carefully, closes #1398 | |||
2018-06-14 | scrub temperature from 'show system' in edgecos, closes #1394 (#1399) | Wild Kat | |
2018-06-14 | bump up version | Saku Ytti | |
2018-06-14 | Update changelog | Saku Ytti | |
2018-06-14 | Fix 1385 - telnet broken | ytti | |
Refactor to common login method to ssh/telnet was broken, as common login method made assumptions of expect and cmd API which weren't true for telnet. telnet.rb updated to resemble ssh.rb API. | |||
2018-06-14 | Correct typo in D-Link model (#1396) | Wild Kat | |
2018-06-14 | relax d-link prompt expectations, closes #1389 (#1392) | Wild Kat | |
2018-06-14 | Document model callback enhancements from #1390 (#1391) | Wild Kat | |
2018-06-14 | Model callback enhancement | ytti | |
Allows cfg, cmd, pre, post and expect blocks to reset the callback array or change from push to unshift. Use case is in custom models which monkey-patch the distribution model. You might want to replace for example distribution ```cmd :secret``` with your own version, like such: cmd :secret clear: true do ... end Or if you instead want to unshift your block to be first to be called: cfg :ssh do prepend: true do .. end Closes #1384 | |||
2018-06-13 | ciscosmb uptime filter is for show system (#1388) | Wild Kat | |
2018-06-13 | Feature string navigation for HTTP source API JSON | ytti | |
Allow HTTP API to place host array in arbitrary place defined as: hosts_location: a.b[0].c Also support arrays in mapping keys: key: location[0].is.here[2] | |||
2018-06-13 | update installation instructions for latest version (#1383) | Wild Kat | |
2018-06-12 | fix minor typos and docs lint (#1382) | Wild Kat | |
2018-06-12 | ssh auth docs and misc documentation fixups, closes #1379 (#1381) | Wild Kat | |
2018-06-12 | update changelog | Saku Ytti | |
2018-06-12 | allow configurable history size in stats | Saku Ytti | |
2018-06-12 | rubycop fix | Saku Ytti | |
2018-06-12 | useless branching | Saku Ytti | |
It will always be MAX_SIZE+1 after push | |||
2018-06-12 | Honor mtime in stats | Saku Ytti | |
Store N last mtimes | |||
2018-06-12 | Update changelog | Saku Ytti | |
2018-06-12 | Merge branch 'master' of github.com:ytti/oxidized | Saku Ytti | |
2018-06-12 | add mtime and bump up version | Saku Ytti | |
Fixes performance regression | |||
2018-06-11 | Add support for frr in new versions of cumulus - closes #1087 (#1375) | Brad Searle | |
2018-06-10 | Add Codacy | Saku Ytti | |
2018-06-08 | Remove more JunOS secrets (#1359) | Zmegolaz | |
* Remove more JunOS secrets * Removed redundant junos secret replacements. Updated changelog. * Moved this change to Master in the changelog. | |||
2018-06-08 | rc 0.57.1, fixup, todo + drop rails_best_practices (#1372) | Wild Kat | |
2018-06-08 | We should resolve model first | Saku Ytti | |
So that input/output can be configured under model | |||
2018-06-07 | Fix IP address assingment | Saku Ytti | |
Unsure what problem was being solved here originally, wish I had tests for expected behaviour :) | |||
2018-06-07 | Updated HPE Comware - Issue #611 Fix (#1305) | Adam | |
This change works for newer HPE Comware model switches and *shouldn't* cause any issues with the previous Comware models although past functionality hasn't been tested as I don't have an older model. | |||
2018-06-07 | Refactor manager, take2 | Saku Ytti | |
Make all the add_* return falsy valuem and make all the callers raise, this has benefit that the caller has more information, like it can tell what node we were trying to load when model failed to load. We were only failing to do this in two places in the code, source and plugin. | |||
2018-06-07 | gcc-c++ needed in oxidized-web 0.10.2 (#1369) | Atroskelis | |
Oxidized-web 0.10.2 requires gcc-c++ to be able to install the gem in Centos 7. Updated docs. | |||
2018-06-07 | oops, actually add the class to source | Saku Ytti | |
2018-06-07 | Fix local file loading | Saku Ytti | |
Local files could never be loaded, as the name does not contain file extension, so check for their existance would always fail. | |||
2018-06-07 | make login username/passord detection generic | Saku Ytti | |
2018-06-07 | Refactor manager | Saku Ytti | |
Main problem we're trying to solve is the silent failures. Requiring files will never fail, one user had problem loading their souce http.rb, which is obviously mandatory for them, but because it didn't fail, it lead to a much harder to understand bug down the line, as we tried to instansiate the 'nil' source. Reason why I did it like this was laziness, because I didn't have to care if or not the file exists, I always tried to load locally defined models, and just return empty hash if I couldn't find any. There may be other reasons and reliances that I've forgotten, but we'll fix them as they come. Such is life without proper testing. |