summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-22Update README.mdStefan Schlesinger
2014-10-22Update README.mdStefan Schlesinger
2014-10-22Update README.mdStefan Schlesinger
2014-10-22Overhauling project README.mdStefan Schlesinger
Cleaning up documentation and adding new Cookbook examples.
2014-10-02Merge pull request #50 from emjemj/masterSamer Abdel-Hafez
Added Cisco NXOS to the list of supported platforms
2014-10-02Added Cisco NXOS to the list of supported platformsEric
2014-10-02Merge pull request #49 from emjemj/masterytti
Fixed some changing output found in specific firmware versions
2014-10-02Fixed more ever changing output in powerconnect model, only shows up on some ↵Eric
firmware versions
2014-09-26Merge pull request #48 from emjemj/masterSamer Abdel-Hafez
Removed ever-changing output from powerconnect model, thanks @artmann
2014-09-26Removed ever-changing output from powerconnect model, thanks @artmannEric
2014-09-23Merge pull request #47 from emjemj/masterytti
Small fix in powerconnect code and new nxos model
2014-09-22Added model for cisco NXOSEric
2014-09-22Fixed small bug in powerconnect enable codeEric
2014-08-30Remove ntp clock-period completelySaku Ytti
emj complained that it sometimes pops in, sometimes pops out. I guess really no point having it there.
2014-08-25Return true if node_want is nilJari Salo
- Otherwise all nodes can not be loaded.
2014-08-25Match IP address explicitlyJari Salo
- New method node_want? - Don't match node to node[:name] if node[:name] is an ip address. Otherwise we might match to wrong ip address.
2014-08-24Add Brocade NOSSaku Ytti
2014-08-24Add ExtremeXOSSaku Ytti
2014-08-19Merge branch 'master' into cfg_as_objectSaku Ytti
2014-08-18update about Cisco SMB supportSaku Ytti
2014-08-18Merge pull request #44 from thetamind/cisco_small_business_switchesytti
Add model for Cisco small business switches
2014-08-18Add model for Cisco small business switchesMatthew Boehlig
Supports 200, 300, 500, and ESW2 series switches
2014-08-16Merge branch 'master' into cfg_as_objectSaku Ytti
2014-08-16Closes #32Saku Ytti
2014-08-16Closes #37Saku Ytti
2014-08-16Closes #35Saku Ytti
2014-08-16Closes #35Saku Ytti
2014-08-16Merge branch 'master' into cfg_as_objectSaku Ytti
2014-08-16update change log, bump up gemspecSaku Ytti
2014-08-16Merge pull request #42 from emjemj/masterytti
Added enable magic for powerconnect model, fixed pagination issues
2014-08-15Added enable magic for powerconnect model, fixed pagination issuesEric
2014-08-15Merge pull request #41 from willglynn/ubiquiti_airosytti
Add Ubiquiti AirOS model
2014-08-15Add Ubiquiti AirOS modelWill Glynn
2014-08-14Merge branch 'master' into cfg_as_objectSaku Ytti
2014-08-14fix ios-xr promptSaku Ytti
2014-08-14never accept empty config in commitSaku Ytti
2014-08-14don't commit empty type configsSaku Ytti
2014-08-13don't commit empty config in git outputSaku Ytti
2014-08-13Merge branch 'master' into cfg_as_objectSaku Ytti
2014-08-13fix pre/post blocksSaku Ytti
2014-08-13Remove changing lines from procurve.rbJari Salo
2014-08-12Support type_as_directory for git outputSaku Ytti
If set to true, repo will have directory matching model type, instead of new repo.
2014-08-12Merge branch 'master' into cfg_as_objectSaku Ytti
2014-08-11specify rugged versionSaku Ytti
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 `<top (required)>' from /usr/local/bin/oxidized:23:in `load' from /usr/local/bin/oxidized:23:in `<main>'
2014-08-10update changelogSaku Ytti
2014-08-09update changelogSaku Ytti
2014-08-08Merge branch 'master' into cfg_as_objectSaku Ytti
2014-08-08Support creating session log of telnet/sshSaku Ytti
If you have input: debug: session_log Then session_log-telnet and session_log-ssh will be created showing what the telnet/ssh saw. Helpful in model development.
2014-08-08refactor cfg as objectSaku Ytti
- now default type is 'nil', which is collapsed to flat config via Outputs#to_cfg - if type is not 'nil' then name is automatically set if not set by model - if name and type is set, separate file is created - if name is not set, but type is set, outputs from type are collapsed as with 'nil' types This model: cmd 'show ip cef' do |out| out.type = 'poop' out.name = false out end cmd 'show process cpu' do |out| out.type = 'poop' out.name = 'my_cpu' out end cmd 'show memory statistics' do |out| out.type = 'poop' out.name = false out end cmd 'show ip bgp summary' do |out| out.type = 'poop' end Would produce git output: [ytti@ytti.fi ~/.config/oxidized]% ls poop bu.ip.fi bu.ip.fi--cpu bu.ip.fi--show_ip_bgp_summary [ytti@ytti.fi ~/.config/oxidized]% bu.ip.fi contains the collapsed stuff bu.ip.fi--cpu is manually named bu.ip.fi--show_ip_bgp_summary is automatically named
2014-08-07Merge pull request #31 from dotwaffle/foundry-oldytti
Use a more compatible Foundry/Brocade syntax for turning off paging