summaryrefslogtreecommitdiffstats
path: root/lib/facter
Commit message (Collapse)AuthorAgeFilesLines
* [#4558] Refactor facter binary using optparseRein Henrichs2010-10-041-0/+99
| | | | | | | Simplify the binary by moving all application specific code into a new Facter::Application module. This module is then refactored to use OptionParser and to simplify invocation logic, while maintaining existing behavior.
* [#4156] Applying patch by KaiRein Henrichs2010-08-061-1/+1
| | | | | | | | | | Patch from the ticket[1] checks for /proc/vz instead of /proc/vz/vzinfo. NOTE that this causes a spec failure since the spec was not changed to match. [1] http://projects.reductivelabs.com/issues/4156 Signed-off-by: Rein Henrichs <rein@puppetlabs.com>
* Merge branch 'ticket/master/4441-windows-ipaddress'Rein Henrichs2010-08-061-2/+4
|\
| * Properly wrapped the windows ipaddress fact in a setcode block.Nick Lewis2010-07-211-2/+4
| |
* | Merge remote branch 'kubicek/ticket/master/4352'Rein Henrichs2010-08-062-5/+13
|\ \
| * | Fix #4352 - Support for detecting KVM virtuals on FreeBSDJiri Kubicek2010-07-261-4/+5
| | | | | | | | | | | | | | | | | | There was no support for detecting FreeBSD running in KVM as a virtual in facter. This patch detects KVM by getting "hw.model" kernel state via sysctl. Jails running in KVM are also correctly detected as "jail" not "kvm". Signed-off-by: Jiri Kubicek <jiri.kubicek@kraxnet.cz>
| * | Fix #4352 - Support for detecting virtuals (jails) on FreeBSDJiri Kubicek2010-07-262-1/+8
| | | | | | | | | | | | | | | | | | There was no support for detecting FreeBSD jails as a virtual in facter. This patch detects jail by getting "security.jail.jailed" kernel state via sysctl. Signed-off-by: Jiri Kubicek <jiri.kubicek@kraxnet.cz>
| | |
| \ \
| \ \
| \ \
*---. | | Merge branches 'ticket/master/2330-uptime', 'ticket/master/4062-meego' and ↵Rein Henrichs2010-08-067-38/+88
|\ \ \| | | | | | | | | | | | | | | | | 'ticket/master/4453-rakefile'
| | * | | [#4062] Implement operating system facts for MeeGoRein Henrichs2010-08-032-1/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Implements operatingsystem and operatingsystemrelease for MeeGo From Rohan McGovern's patch: MeeGo ( http://meego.com/ ) uses an /etc/meego-release file similar to the files found on many Linux distros. Currently, MeeGo falls back on “Linux” as the operatingsystem fact. It’d be useful to have a proper value. Attached patch implements it. Signed-off-by: Rein Henrichs <rein@puppetlabs.com>
| * | | | [#2330] Update uptime calculation to use /bin/catRein Henrichs2010-08-051-7/+6
| |/ / / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Per #4466, Ruby has trouble reading files in /proc [1]. The alternative is to use `bin/cat`. * Also refactored methods to explicitly redirect standard error to /dev/null for *nix and BSD system calls. [1] http://blade.nagaokaut.ac.jp/cgi-bin/scat.rb/ruby/ruby-talk/155745
| * / / [#2330] Uptime should not make redundant system callsRein Henrichs2010-08-035-37/+84
| |/ / | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Rewrite of uptime facts and supporting utility methods. Works on unix, BSD, windows. No longer makes redundant system calls. Uses Facter::Util::Uptime utility methods: * Implemented uptime_seconds_unix using /proc/uptime or who -b on unix, sysctl on BSD. Added unit tests for the behaviors of get_uptime_seconds_unix: read from proc/uptime, read uptime from "sysctl -b kern.boottime", read uptime from "who -b", and return nil if nothing else works. * Implemented uptime_seconds_win using the Win32 API. Facts implemented: * uptime_{seconds,hours,days} Returns the respective integer value. * uptime Returns human readable uptime statistic that preserves original behavior. Examples: 3 days 1 day 5:08 hours 0:35 hours
* / / Facter::Manufacturer - sunos test + simplified regexMarc Fournier2010-08-041-1/+1
|/ / | | | | | | | | | | | | | | | | The 2nd regex (with the 0x\d+) got removed because it appears to never be used, even on SunOS, for which it has been introduced (99833a1b / #1793). The 3dn regex is changed to clearly confine the value between mandatory newlines/whitespaces.
* / Fixed #3929 - Added user confine to AIX memory factsJames Turnbull2010-06-181-7/+7
|/
* Adding HP-UX support to Facter's IP factsJames Turnbull2010-06-151-3/+15
| | | | Includes Rspec tests
* Fixed #3393 - Updates to Facter for MS WindowsDavid Schmitt2010-06-154-39/+72
| | | | | | | | | | This patch is originally by Daniel Berger <djberg96@gmail.com>, I changed using Facter.value instead of repeatedly testing Config['host_os'], removed Resolution::which, and fixed the specs. Thanks to Paul Nasrat for helping with cross-platform debugging. Signed-off-by: David Schmitt <david@dasz.at>
* Fixed #3403 - Added fact to query vlans; added spec testJonas Genannt2010-06-132-0/+32
|
* Fixed #2355 read hang on /proc/xen/capabilties on RHEL 4.7Bernhard Furtmueller2010-05-271-2/+2
|
* Fixed failing test introduced by previous commitMarc Fournier2010-05-071-1/+1
|
* Fixes #3740 - split dmi output on regexMarc Fournier2010-05-071-1/+1
| | | | | | | | Splitting dmi output on the string "/^Handle/" didn't work, and caused the function to match the wrong key if it was found more than once. The intended behaviour of the function is restored by splitting the dmi output on the regex /^Handle/.
* Fixed #2313 - Somewhat essential hardware facts not available on OpenBSD, ↵James Turnbull2010-04-243-0/+65
| | | | | | patch included Thanks to Joe McDonagh for the patch.
* Fixed #2938 - interfaces that don't match ^\w+[.:]?\d+ are ignoredJames Turnbull2010-04-241-2/+2
| | | | Thanks to Tim Sharpe for the fix
* Added support for Slackware in operatingsystem and operatingsystemreleaseBostjan Skufca2010-04-242-0/+12
|
* Fixed #3445 - Facter does not handle solaris branded zones properlyJames Turnbull2010-04-241-0/+1
| | | | Thanks to Pavol Dilung for the fix.
* Fixed #3447 - OVS and OEL not matching in operatingsystemreleaseJames Turnbull2010-04-121-2/+2
|
* Fixes #3397 - is_virtual fact does not detect Linux-VServerJames Turnbull2010-04-121-1/+1
| | | | Thanks to Benedikt Bohm for the fix.
* Add kvm support to virtual factJohn Ferlito2010-03-082-1/+22
| | | | Based on initial patch by James Turnbull
* fixes #2573, #2085, #1291 - fixes domain and fqdn facts resolutionOhad Levy2010-03-083-7/+12
| | | | | | | | This patch removes the relationship between the domain fact and LDAP/NIS domains. domain fact relates to DNS domain - this will avoid the confusion caused by the LDAP/NIS domain (which might be different to the DNS domain name). Additionally, if hostname is already in long form, it won't try to build the fqdn fact from hostname and domain.
* Revert "use popen3 in Resolution.exec"Paul Nasrat2010-02-281-17/+6
| | | | | | | | | | | This reverts commit 33fb7709404e706801683e6c47ab7a0a5a1884b1. This has broken master for some facts (eg OS X facts), it also breaks facter platform support on win32 as popen3 does not work there. I'd like to get master working, backlog of patches applied and revisit exec. Paul
* Fix #2341 - stricter handling of dmidecode splitPaul Nasrat2010-01-301-1/+1
| | | | This adds a test to ensure we are not prematurely splitting on Handle
* Fix #2746 - add architecture support for GNU/kFreeBSDPaul Nasrat2010-01-171-2/+2
|
* Fix missing error casePaul Nasrat2010-01-171-0/+1
|
* Remove whitespace in DMI facts (#3008, #3011)Paul Nasrat2010-01-101-6/+11
| | | | | | | | | In addition to the stripping of the output of these facts this patchset: Refactor - Extracted function to enable easier testing. Tests - data driven tests for the dmidecode/smbios fact. Paul
* Only ignore IPs starting with 127.Ricky Zhou2010-01-101-6/+6
|
* use popen3 in Resolution.exec to catch stderrPeter Meier2009-11-081-6/+17
| | | | | | | | | | | | | | | | | | | So far messages to stderr haven't been catched by Facter::Util::Resolution.exec and were insted printed out to stderr. This will cause facter and even puppet to print to stderr themself, which is not very nice when running puppetd by cron, as you might get every run a mail if a command outputs to stderr. We are now wrapping the command execution with Open3.popen3 to catch stderr and passing them to the new introduced Facter.warn method. We are also catching multiline outputs chomping newlines and returning an array if there have been more than one line. Otherwise we return an array containing the different lines. This prevents in general cases as described in #2766 and should handle command execution in a bit saner way.
* Fix errors when alias IP's are definedKurt Keller2009-09-091-0/+7
|
* Fix 2455 - improve error handling on fact loadPaul Nasrat2009-09-092-1/+6
| | | | | | Fix facts added with empty blocks by handling calls to value when setcode not called Ensure we handle load failures more gracefully
* Fix broken solaris zone tests on EC2Paul Nasrat2009-09-092-20/+35
| | | | | | | | | This cleans up xen and vserver detection to enable us to stub out so when we happen to be running tests on xen we don't report as that. More cleanup is needed in this area but this should give us a green build. This renames the tests to be consistent with current naming convention
* Add Darwin netmask support on top of Jim's patchPaul Nasrat2009-08-232-2/+8
|
* Fix #2306 netmask and ipaddress on SunOS and BSDsJim Pirzyk2009-08-232-3/+3
|
* Fix #2470 - duplicate entries in interfaces factPaul Nasrat2009-08-121-1/+1
| | | | | Solaris orders inet and inet6 seperately. This tests for and fixes this by uniqueing the list. Will probably need work when we get to ipv6 support.
* Update OS X minor version fact to cope with '10.x' values and provide test ↵Nigel Kersten2009-08-071-3/+7
| | | | | | coverage switch %x{} call to Facter::Util::Resolution.exec for better testing
* Merge commit 'pnasrat/tickets/master/2292' into mergePaul Nasrat2009-07-182-24/+38
|\
| * Issue #2292 Add tests for virtual factsPaul Nasrat2009-07-162-24/+38
| | | | | | | | Add tests and utility for virtual fact detection
* | Added path factJames Turnbull2009-07-161-0/+5
| |
* | Issue #2314 OpenBSD sysctlJoe McDonagh2009-07-162-13/+35
|/ | | | Use OpenBSD sysctl for manufacturer facts.
* Fix #2060 and cleanup operatingsystemreleaseTodd Zullinger2009-07-141-52/+12
|\ | | | | | | | | | | | | | | | | | | Patch from Todd Zullinger, rebased. Merge branch 'cleanup-operatingsystemrelease' of git://jet.mox.net/~tmz/facter into tickets/master/2060 Conflicts: lib/facter/operatingsystemrelease.rb
| * Fix operatingsystemrelease on Red Hat based distrosTodd Zullinger2009-03-091-1/+1
| | | | | | | | | | | | This allows operatingsystemrelease to properly determine the release for various Red Hat based distros, including the point portion of the release.
| * Consolidate operatingsystemrelease for CentOS, Fedora, oel, ovs, and RedHatTodd Zullinger2009-03-091-51/+11
| | | | | | | | These operating systems all use a similar format for the release file.
* | Fixes #2307 - Minor fix for zone in virtual.rbJames Turnbull2009-06-041-1/+1
| |
* | Fix #2278 Revert fix for 2120Paul Nasrat2009-05-221-17/+11
| | | | | | | | | | | | | | | | | | Facter #2120 - Solaris support for Facter[virtual] This reverts commit 56760d34f070db4d7bb8e5fcfb7939fe3074bf49. This patch is broken as $? global will report last run process in the case of no vmware-checkvm binary