summaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
* ec2 plugin should handle binary toosh/ohai-issues-503Sean Horn2015-03-182-13/+41
|
* Merge pull request #495 from cmluciano/cml/addtravisbadgeLamont Granquist2015-03-161-1/+4
|\ | | | | Add travis badge for build status to readme
| * Add appveyor badge for build status to readmecmluciano2015-03-111-0/+2
| |
| * Add travis badge for build status to readmecmluciano2015-03-111-1/+2
|/
* Merge pull request #490 from chef/jdm/fasterJay Mundrawala2015-02-281-0/+4
|\ | | | | Try to use travis container thingys
| * Try to use travis container thingysjdm/fasterJay Mundrawala2015-02-171-0/+4
|/
* Bump version to 8.1.1Jay Mundrawala2015-02-171-1/+1
|
* Update CHANGELOG for 8.1.1Jay Mundrawala2015-02-171-0/+3
|
* Merge pull request #489 from chef/jdm/fixJay Mundrawala2015-02-174-2/+7
|\ | | | | Ohai 8.1 is broken
| * Don't redefine constant that causes warningJay Mundrawala2015-02-171-1/+1
| |
| * Need to require ipaddressJay Mundrawala2015-02-171-0/+2
| |
| * Travis.yml should run ohaiJay Mundrawala2015-02-171-1/+3
| |
| * Appveyor should run ohaiJay Mundrawala2015-02-171-0/+1
|/
* Fix changelogJay Mundrawala2015-02-171-0/+3
|
* Merge pull request #486 from chef/jdm/version-bump-8.1Jay Mundrawala2015-02-171-1/+1
|\ | | | | Bump version to 8.1.0
| * Bump version to 8.1.0Jay Mundrawala2015-02-171-1/+1
|/
* Merge pull request #484 from chef/jdm/merge-into-masterJay Mundrawala2015-02-171-1/+1
|\ | | | | Jdm/merge into master
| * Merge remote-tracking branch 'origin/8-stable' into HEADJay Mundrawala2015-02-171-1/+1
| |\ |/ / | | | | | | | | | | | | | | | | | | | | | | * origin/8-stable: Rename build Added appveyor.yml bumping version to 8.0.1 restrict to ruby >= 2.0.0 to match chef add require resolv to work around missing constant issue in cvt testers Conflicts: appveyor.yml ohai.gemspec
| * Merge pull request #465 from chef/jdm/appveyor-8-stableJay Mundrawala2015-01-221-0/+32
| |\ | | | | | | Added appveyor.yml
| | * Rename buildJay Mundrawala2015-01-221-1/+1
| | |
| | * Added appveyor.ymlJay Mundrawala2015-01-221-0/+32
| |/
| * bumping version to 8.0.1Lamont Granquist2014-12-031-1/+1
| |
| * restrict to ruby >= 2.0.0 to match chef8.0.1Lamont Granquist2014-12-031-0/+2
| |
| * add require resolv to work around missing constant issue in cvt testersLamont Granquist2014-12-031-0/+2
| |
* | Update CHANGELOG.md for contributionsBryan McLellan2015-02-171-1/+11
| | | | | | | | | | | | | | | | | | Closes #364 Closes #433 Closes #442 Closes #473 Closes #478 Closes #480
* | add extra metadata passed in from hints in knife-linodeJosh Blancett2015-02-171-0/+1
| |
* | Fix up incorrect cloudstack metadataAlexey Karpik2015-02-175-16/+39
| |
* | block_device rotational keyEric G. Wolfe2015-02-171-0/+5
| | | | | | | | | | * Added rotational key (0/1) for differentiation of Solid-State and Rotational Magnetic storage.
* | Add a trailing dot to avoid using search option in resolv.confJose Luis Salas2015-02-171-1/+2
| |
* | get kernel version as platform version for archlinuxRyan Chipman2015-02-172-0/+15
| |
* | Support IBM System z s390 cpushuo zhang2015-02-173-37/+135
| |
* | Fix GitHub Issue #432Jeff Goldschrafe2015-02-172-26/+57
| | | | | | | | | | | | | | | | | | | | | | Fixes GitHub issue #432: cloud_v2 fails to initialize on GCE hosts without external IP Resolves a special-case issue where an empty public IP address is not handled correctly, causing cloud_v2 to fail to initialize when a GCE instance does not have a public IP. Spec included. Obvious fix, though I think I signed the CLA last year anyway.
* | Update CHANGELOG.md for contributionsBryan McLellan2015-02-171-0/+10
| | | | | | | | | | | | | | | | Closes #343 Closes #400 Closes #416 Closes #428 Closes #431
* | support for detecting if inside docker container.paulczar2015-02-172-24/+137
| |
* | fix network on coreos/gentooMichael Schmidt2015-02-172-5/+18
| | | | | | | | | | | | | | | | | | | | | | | | | | On Gentoo based distributions the `ip` executable is not linked to `/sbin/ip` but to `/usr/bin/ip`. Check for both locations. A general fix could be: ``` ENV['PATH'].split(File::PATH_SEPARATOR).any? do |directory| File.executable?(File.join(directory, "ip")) end ``` But maybe overkill. So, let's keep it simple. :)
* | Update mime-types dep to ~> 2.0Bryan McLellan2015-02-171-1/+1
| | | | | | | | Fixes #416
* | Convert specs to RSpec 3.2.0 syntax with TranspecBryan McLellan2015-02-173-66/+66
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This conversion is done by Transpec 3.0.7 with the following command: transpec spec/unit/plugins/network_spec.rb spec/unit/plugins/cloud_spec.rb spec/unit/plugins/cloud_v2_spec.rb spec/unit/plugins/digital_ocean_spec.rb * 31 conversions from: obj.should to: expect(obj).to * 27 conversions from: == expected to: eq(expected) * 18 conversions from: obj.stub(:message) to: allow(obj).to receive(:message) * 7 conversions from: obj.should_not to: expect(obj).not_to For more details: https://github.com/yujinakayama/transpec#supported-conversions
* | Add digital_ocean support to the cloud_v2 pluginStafford Brunk2015-02-172-0/+95
| |
* | Add digital_ocean support to the cloud pluginStafford Brunk2015-02-172-0/+90
| |
* | Add digital_ocean ohai pluginStafford Brunk2015-02-172-0/+292
| |
* | Add an IpHelper utility moduleStafford Brunk2015-02-172-0/+180
| |
* | fix unit-test after rebaseSten Spans2015-02-171-2/+1
| |
* | add explicit test for ip link only interfacesSten Spans2015-02-171-0/+5
| |
* | add xenserver sample interfaces to unit-testSten Spans2015-02-171-1/+46
| | | | | | | | The eth3 interface only shows up via ip link, not ip addr.
* | Fix network.rb for XenServer Creedence Alphasspans2015-02-171-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | On the current alpha versions of xenserver the "ip addr" command skips "physical" interfaces, however "ip -d -s link" does list all interfaces. This causes network.rb to fail on line 177 - because it tries to add state for an undefined interface. The easiest fix is to create the iface[tmp_int] entry when we encounter a new interface during the parsing of "ip -d -s link". With this fix chef-client is again usable on XenServer. Further debug output available on request.
* | Update contribution info for #441.Tyler Fitch2015-02-111-0/+2
| |
* | Format the PHP spec for easy readingTim Smith2015-02-111-5/+26
| |
* | Switch to each_line for parsing php -v outputTim Smith2015-02-111-1/+1
| |
* | Add tests for the zend_opcache_version attributeTim Smith2015-02-111-0/+13
| |
* | Add php -v output on Ubuntu trustyTim Smith2015-02-111-0/+16
| |