summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-29Merge remote-tracking branch 'origin/4.3.x'Travis Fields
2014-10-29Merge pull request #348 from cyberious/4.3.xMorgan Haskel
Add proper exception catching of Windows errors when CreateProcess does not succeed
2014-10-29Add proper exception catching of Windows errors when CreateProcess does not ↵Travis Fields
succeed
2014-10-28Merge pull request #347 from cyberious/masterColleen Murphy
Fix issue with ensure_request
2014-10-28Add windows test exclusion to ensure_resourceTravis Fields
2014-10-28Merge pull request #346 from cyberious/masterColleen Murphy
Spec_helper_acceptance fix provision section
2014-10-28Fixed a mistake where we were trying to touch a host file using the default ↵Travis Fields
which was not relavent to the host we were modifying
2014-10-28Merge pull request #345 from cyberious/masterColleen Murphy
Fix logic issue with not including windows for testing ensure_packages as ruby and gem are not on the install path
2014-10-28Fix logic issue with not including windows for testing ensure_packages as ↵Travis Fields
ruby and gem are not on the install path
2014-10-28Merge remote-tracking branch 'origin/4.3.x' back to masterTravis Fields
2014-10-28Merge pull request #344 from cyberious/TestCaseFixesColleen Murphy
Fix testcases for Future Parser and resolve issue with values_at in assuming that it was dealing with a string
2014-10-28Fix testcases for Future Parser and resolve issue with values_at in assuming ↵Travis Fields
that it was dealing with a string
2014-10-28Added correct converstions for PB and EB.Zachary Alex Stern
* We were converting Exabytes to bytes as Petabytes. * Updated tests to cover ever unit. * Added note that we're going by the old, inaccurate definitions of Kilobytes, Megabytes, etc, in that we treat them as powers of 2.
2014-10-24Merge branch '4.3.x', add tempfile back for resource validate_cmd and ↵Travis Fields
validate_augeas
2014-10-24Merge pull request #340 from cyberious/4.3.xJohn Duarte
add require 'tempfile' to resolve a previously autorequired resource
2014-10-24add require 'tempfile' to resolve a previously autorequired resourceTravis Fields
2014-10-24Merge branch '4.3.x'Travis Fields
Conflicts: README.markdown lib/puppet/parser/functions/has_interface_with.rb
2014-10-10ensure_resource: be more verbose in debug modeMathias Klette
helps discovering duplication issues, especially when figthing boolean vs. string arguments
2014-10-09Merge pull request #262 from tremble/MODULES-707Morgan Haskel
Modules 707
2014-10-09Merge pull request #335 from jbondpdx/stdlib-readmeHunter Haugen
DOC-248 Revised and updated readme for stdlib module
2014-10-08DOC-248 Revised and updated readme for stdlib modulejbondpdx
Reorganized and edited stdlib module readme.
2014-10-08Merge pull request #334 from cyberious/WindowsHasInterfacesBugColleen Murphy
ENTERPRISE-281 fixes issue with has_interfaces and case mismatch causing...
2014-10-08ENTERPRISE-281 fixes issue with has_interfaces and case mismatch causing us ↵Travis Fields
not to return some interfaces
2014-09-24Merge pull request #303 from bobtfish/fix_strict_variablesHunter Haugen
Fix strict_variables = true
2014-09-22Merge pull request #302 from 3flex/update-readmeHunter Haugen
(MODULES-927) Update readme
2014-09-22Fix strict_variables = trueTomas Doran
2014-09-22Re-use existing str2bool code rather than doing a copy and pasteMark Chappell
2014-09-22(MODULES-707) chomp() fails because generate() no longer returns a stringMark Chappell
We need to use unless value.is_a?(String) || value.is_a?(Array) rather than klass = value.class unless [String, Array].include?(klass) because the klass version enforces type checking which is too strict, and does not allow us to accept objects wich have extended String (or Array). For example, generate() function now returns Puppet::Util::Execution::ProcessOutput which is just a very simple extension of String. While this in it's self was not intentional (PUP-2306) it is not unreasonable to cope with objects which extend Strings
2014-09-17Merge pull request #320 from JimPanic/patch-2Hunter Haugen
Update docs of validate_string to reflect bug
2014-09-16Merge pull request #321 from cyberious/4.3.xHunter Haugen
MODULES-1248 Fix issue with not properly counting regex matches with leg...
2014-09-16MODULES-1248 Fix issue with not properly counting regex matches with legacy ↵Travis Fields
versions of ruby
2014-09-16Merge pull request #322 from hunner/remove_simplecovTravis Fields
Remove simplecov
2014-09-16Remove simplecovHunter Haugen
simplecov 0.9 dropped ruby 1.8 support, and stdlib is one of the oddball modules that uses it. So we could probably just remove it and be okay. (cherry picked from commit a7c129b22d91fc723a8176c066a3eb96b03a2f56)
2014-09-16Note that also future parser does not workAlexander Pánek
2014-09-16Updated docs of validate_string to reflect bugAlexander Pánek
See: https://tickets.puppetlabs.com/browse/MODULES-457
2014-08-28Merge pull request #313 from mhaskel/spec_updatesAshley Penney
Update spec_helper for more consistency
2014-08-28Update spec_helper for more consistencyMorgan Haskel
2014-08-06Merge pull request #308 from hunner/remove_covAshley Penney
Remove simplecov
2014-08-05Remove simplecovHunter Haugen
simplecov 0.9 dropped ruby 1.8 support, and stdlib is one of the oddball modules that uses it. So we could probably just remove it and be okay.
2014-08-05Merge branch '4.3.x'Hunter Haugen
2014-07-31Merge pull request #306 from hunner/fix_concatAshley Penney
(MODULES-1195) Rebase of #202
2014-07-31Introduce test for array destructionSpencer Krum
It was discovered that the concat array modifies the arrays passed to it as an argument as a side effect. This test will ensure that doesn't happen again.
2014-07-31Concatenate arrays without modifying the first arrayColleen Murphy
2014-07-17(MODULES-927) Update docs for functions in READMEMatthew Haughton
* range (take an optional third argument for range step) * validate_slength (take an optional third argument for minimum length) * file_line (take after and multiple attributes)
2014-07-17(MODULES-927) Add missing functions to READMEMatthew Haughton
* anchor * bool2str * camelcase * deep_merge * pick_default * validate_ipv4_address * validate_ipv6_address
2014-07-16Merge pull request #300 from trlinkin/file_line_docsHunter Haugen
(MODULES-1221) Add file_line autorequire documentation
2014-07-16(MODULES-1221) Add file_line autorequire documentationThomas Linkin
This commit adds additional documentation to the file_line resource explaining how it will autorequire file resources when present.
2014-07-15Merge pull request #299 from apenney/432-releaseTravis Fields
Prepare a 4.3.2 release.
2014-07-15Prepare a 4.3.2 release.Ashley Penney
2014-07-14Merge pull request #298 from hunner/release_4.3.1Ashley Penney
Release 4.3.1