summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* 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 #3542 - Ruby 1.9: broken unittest, String#each no longer existsJames Turnbull2010-04-241-0/+1
| | | | Thanks to Jos Backus for the fix.
* Fixed #3541 - Ruby 1.9: broken unittest, unexpected invocation: ↵James Turnbull2010-04-241-0/+1
| | | | | | Process.waitall() Thanks to Jos Backus for the fix.
* Fixed #3445 - Facter does not handle solaris branded zones properlyJames Turnbull2010-04-241-0/+1
| | | | Thanks to Pavol Dilung for the fix.
* Fix for #3411 install.rb should not put "." first in the tmp_dirsMartin Englund2010-04-241-1/+1
| | | | Signed-off-by: Martin Englund <martin@englund.nu>
* Fixed #3447 - OVS and OEL not matching in operatingsystemreleaseJames Turnbull2010-04-121-2/+2
|
* Fixed #3410 - Warnings in rake specJames Turnbull2010-04-121-1/+1
|
* 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-084-1/+35
| | | | 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-282-61/+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-302-1/+23
| | | | 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-103-6/+97
| | | | | | | | | 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
|
* Added package signing taskJames Turnbull2009-11-141-0/+14
|
* use popen3 in Resolution.exec to catch stderrPeter Meier2009-11-082-6/+61
| | | | | | | | | | | | | | | | | | | 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.
* introduce a warn mechanism for debuggingPeter Meier2009-11-072-1/+85
| | | | | We can now warn messages that will be passed to Kernel.warn if debugging is enabled.
* Add docs to Mac OS X package creation script and clean out old docs in the ↵Nigel Kersten2009-11-062-0/+15
| | | | preflight
* Fixed : 2788 - ftools missing in Ruby 1.9Stéphan Gorget2009-11-051-4/+16
| | | | Signed-off-by: Stéphan Gorget <phantez@gmail.com>
* Fixes #2704. Problem finding install.rb three levels upNigel Kersten2009-10-071-1/+1
|
* Removed all ChangeLogJames Turnbull2009-10-042-1727/+1
|
* Updated ChangeLog and taskJames Turnbull2009-09-253-360/+523
|
* Added additional exclusion to rcov processJames Turnbull2009-09-181-1/+1
|
* Added rcov support to spec taskJames Turnbull2009-09-171-4/+12
|
* Updated CI Rake taskJames Turnbull2009-09-171-1/+0
|
* Clarify licensing as GPLv2 (or any later version)Todd Zullinger2009-09-112-683/+25
|
* Added new format ChangeLogJames Turnbull2009-09-111-0/+1707
|
* Incremented version and updated CHANGELOGJames Turnbull2009-09-112-1/+15
|
* Issue #2414 - add unit testPaul Nasrat2009-09-091-0/+6
| | | | This adds a unit test on top of Kurt's patch
* Fix errors when alias IP's are definedKurt Keller2009-09-091-0/+7
|
* Fix 2455 - improve error handling on fact loadPaul Nasrat2009-09-094-1/+37
| | | | | | 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-094-20/+73
| | | | | | | | | 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
* Issue #2548 netblock factPaul Nasrat2009-08-241-0/+10
| | | | | | We already have a network fact it's just missing a test. Paul
* 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
|
* Updated Rakefile and moved Rake tasks to tasks/rake directoryJames Turnbull2009-08-186-52/+80
|
* Added default Rake taskJames Turnbull2009-08-181-0/+4
|
* Fix bug where you'd get an 'undefined method' error if trying to access a ↵Diego Algorta2009-08-142-1/+17
| | | | fact's value when collection has not being yet initialized.
* Fix #2470 - duplicate entries in interfaces factPaul Nasrat2009-08-123-1/+16
| | | | | 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-072-3/+41
| | | | | | coverage switch %x{} call to Facter::Util::Resolution.exec for better testing
* Update install.rb to cope with all OS X versions, not just 10.5Nigel Kersten2009-08-071-4/+5
|
* Merge commit 'pnasrat/tickets/master/2292' into mergePaul Nasrat2009-07-184-24/+147
|\
| * Issue #2292 Add tests for virtual factsPaul Nasrat2009-07-164-24/+147
| | | | | | | | 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