| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Signed-off-by: Tim Smith <tsmith@chef.io>
|
|\
| |
| | |
Added haskell language plugin for ohai
|
| |
| |
| |
| |
| |
| | |
Detects whether ghc, ghci, cabal, or stack are installed
Signed-off-by: Chris Dituri <csdituri@gmail.com>
|
|\ \
| | |
| | | |
Extend set_attribute to set sub-attributes.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
Use:
- set_attribute(:attr, value) assigns attribute 'attr' value.
- set_attribute(:attr, :subattr, value) assigns attribute 'attr/subattr' value. Extends to subattributes of arbitrary depth.
Raises a TypeError if some :subattr is not an Array, Hash, or Mash (e.g., a String value).
|
|\ \ \
| |_|/
|/| | |
ip_scopes update
|
| | |
| | |
| | |
| | | |
Signed-off-by: Marton Natko <marton.natko@gmail.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Marton Natko <marton.natko@gmail.com>
|
| | |
| | |
| | |
| | | |
Signed-off-by: Marton Natko <marton.natko@gmail.com>
|
| |\ \
| | | |
| | | |
| | | | |
Signed-off-by: Marton Natko <marton.natko@gmail.com>
|
| |\ \ \
| | | | |
| | | | |
| | | | | |
Signed-off-by: Marton Natko <marton.natko@gmail.com>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Remove Ruby 1.8 / 1.9 spec helpers
|
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
Signed-off-by: Tim Smith <tsmith@chef.io>
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Move dev deps to the Gemfile and bump changelog generator
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
This removes the need for Rack 1.X which we had to pin due to the old github changelog generator release. We now have a new active support pin to keep Ruby 2.1 support
Signed-off-by: Tim Smith <tsmith@chef.io>
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Wipe the release notes
|
| | |_|/ /
| |/| | |
| | | | | |
These were very out of date
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Remove the doc changes doc
|
|/ / / /
| | | |
| | | | |
We're not using these anymore
|
|\ \ \ \
| |/ / /
|/| / /
| |/ / |
Add new MVPs for the last few releases
|
|/ /
| |
| |
| |
| |
| | |
Get @johnbellone @davide125 @natewalck @jaymzh and @jerearista on here
Signed-off-by: Tim Smith <tsmith@chef.io>
|
|\ \
| | |
| | | |
Prefer the LSB standard configurator.
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
There isn't and has never been mention of /etc/lsb-release in the
official LSB universe. The "correct" way to discover LSB data is with
lsb_release, so this uses that facility first, before falling back to
oddball support.
Without this change, some upgraded boxen will have the wrong results
because an outdated /etc/lsb-release may have been left behind with
different contents than what would come from the lsb_release util.
See:
http://refspecs.linuxfoundation.org/LSB_5.0.0/LSB-Core-generic/LSB-Core-generic/lsbrelease.html
http://refspecs.linuxfoundation.org/LSB_5.0.0/LSB-Core-generic/LSB-Core-generic/etc.html
|
|\ \ \
| | | |
| | | | |
Add logic to darwin hostname
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Release 8.21
|
|/ / / /
| | | |
| | | |
| | | | |
Signed-off-by: Tim Smith <tsmith@chef.io>
|
|\ \ \ \
| |/ / /
|/| | | |
Doc changes for #877
|
| | | | |
|
| | | |
| | | |
| | | | |
@jaymzh is this correct?
|
| | | | |
|
| | | | |
|
| | | | |
|
|\ \ \ \
| | | | |
| | | | | |
Move contributing docs to chef/chef
|
| | | | |
| | | | |
| | | | |
| | | | | |
Signed-off-by: Tim Smith <tsmith@chef.io>
|
|/ / / /
| | | |
| | | |
| | | | |
Signed-off-by: Tim Smith <tsmith@chef.io>
|
|/ / /
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* Add shard plugin
This adds a shard_seed that people can then shard on ala:
```
def in_shard(node, shard, shard_size)
node['shard_seed'] % shard_size <= shard
end
```
Which then enables:
```
if in_shard(node, 4, 100)
# some new stuff
else
# some old stuff
end
```
Which is roughly how we shard things. Other code to utilize this to follow.
* Add 'hostname' vs 'fqdn' options; make function non-global
* require library, allow multiple sources
* Add mac support, change defaults, fix config
* Fix style
* Add tests, fix DMI lookup
* More style fixes
* Add failure in the event of unrecognized sources
* More style fixes
* Refector code for less repetition. Thanks @coderanger
* Style fixes
|
|\ \ \
| | | |
| | | | |
Ohai uptime plugin hangs in Windows.
|
| | | | |
|
| | | | |
|
| | | | |
|
|/ / /
| | |
| | |
| | | |
plugin.
|
| | |
| | |
| | |
| | | |
Signed-off-by: Tim Smith <tsmith@chef.io>
|
| | |
| | |
| | |
| | |
| | |
| | |
| | |
| | | |
* add a plugin for machine information
* split machine into hostnamectl and machine_id for clarity
* Fix machineid spec
|
|\ \ \
| | | |
| | | | |
Solaris_update_version: Create kernel[:update] for solaris 2
|
| | | |
| | | |
| | | |
| | | |
| | | |
| | | | |
Add :update to the kernel mash
Style fixes
Typo fixes
|
| | | | |
|
| | | |
| | | |
| | | |
| | | | |
Extract the Solaris update information from /etc/release.
|
|\ \ \ \
| | | | |
| | | | | |
Detect lxd
|
| | |/ /
| |/| | |
|