summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2016-01-22Add is_ipv4_address and is_ipv6_address functionsGiulio Fidente
These are useful when making decisions based on the type of IP address received.
2016-01-20Merge pull request #568 from mattbostock/fix_docsJT (Jonny)
Fix reference to validate_bool in function
2016-01-19Fix reference to validate_bool in functionMatt Bostock
The documentation in `validate_ip_address` references `validate_bool`, but I believe this should read `validate_ip_address` instead, which makes more sense. Looks like this was copied from `validate_ipv4_address`, which I fixed in 7b068781.
2016-01-18Merge pull request #567 from alechenninger/add-test-for-basename-with-schemeDavid Schmitt
Add test for basename on path with scheme
2016-01-16Add test for basename on path with schemeAlec Henninger
2016-01-12Merge pull request #566 from puppetlabs/4.11.xDavid Schmitt
4.11.0 merge back
2016-01-08Merge pull request #552 from mattbostock/add_x509_rsa_key_pairDavid Schmitt
Add a function to validate an x509 RSA key pair
2016-01-08Change order of tests to be more logicalMatt Bostock
Put the tests using a valid certificate fixture together and put tests using a valid key fixture together.
2016-01-08Test certificate and key with a truncated middleMatt Bostock
Test a valid certificate and valid key that have had 48 characters removed from their middle, to simulate a malformed certificate and key. Suggested by @DavidS in https://github.com/puppetlabs/puppetlabs-stdlib/pull/552
2016-01-08Add a function to validate an x509 RSA key pairMatt Bostock
Add a function to validate an x509 RSA certificate and key pair, as commonly used for TLS certificates. The rationale behind this is that we store our TLS certificates and private keys in Hiera YAML files, and poor indentation or formatting in the YAML file could cause a valid certificate to be considered invalid. Will cause the Puppet run to fail if: - an invalid certificate is detected - an invalid RSA key is detected - the certificate does not match the key, i.e. the certificate has not been signed by the supplied key The test certificates I've used in the spec tests were generated using the Go standard library: $ go run $GOROOT/src/crypto/tls/generate_cert.go -host localhost Example output: ==> cache-1.router: Error: Not a valid RSA key: Neither PUB key nor PRIV key:: nested asn1 error at /var/govuk/puppet/modules/nginx/manifests/config/ssl.pp:30 on node cache-1.router.dev.gov.uk
2016-01-07Merge pull request #565 from tphoney/4.11.0_tweakDavid Schmitt
minor tweak to 4.11.0 adding debian 8 to metadata
2016-01-07minor tweak to 4.11.0 adding debian 8 to metadatatphoney
2016-01-04Merge pull request #545 from mpolenchuk/masterDavid Schmitt
Add clamp function
2015-12-31Merge pull request #564 from tphoney/4.11.0_prepJesse Lovelace
4.11.0 prep
2015-12-31Add clamp functionMichael Polenchuk
Clamp keeps value within the range. Employ of soft() makes the whole thing is independant of order.
2015-12-304.11.0 preptphoney
2015-12-21Merge pull request #553 from logicminds/absolute_pathBryan Jen
adds new parser called is_absolute_path
2015-12-21Merge pull request #561 from DavidS/fix-package_providerTP Honey
Allow package_provider fact to resolve on PE 3.x
2015-12-18Allow package_provider fact to resolve on PE 3.xDavid Schmitt
PE 3.x emits a puppetversion fact in the format "3.x.x (Puppet Enterprise 3.x.x)". This fact causes an error when invoked on PE 3.x: Could not retrieve fact='package_provider', resolution='<anonymous>': Malformed version number string 3.8.1 (Puppet Enterprise 3.8.1 This fix has been tested on PE 3.8.2 and should work for PE 3.3, 3.7, and 3.8. Original-fix-by: Alex Harden <aharden@gmail.com>
2015-12-17Merge pull request #559 from DavidS/fm-3802-fix-ensure_resource-testTP Honey
(FM-3802) make ensure_resource test of packages
2015-12-17(FM-3802) make ensure_resource test of packagesDavid Schmitt
This ensures that the test passes independently of changes to rubygems.
2015-12-15refactors the validate_absolute_path to utilize the is_absolute_pathCorey Osman
2015-12-15adds new parser called is_absolute_pathCorey Osman
* is_absolute_path returns boolean true if the given path is absolute, returns false otherwise. * works for windows and unix
2015-12-15Merge pull request #558 from puppetlabs/4.10.xJesse Lovelace
4.10.x mergeback
2015-12-14Merge pull request #557 from jbondpdx/4.10.xBryan Jen
edits to README
2015-12-14more carriage returnsjbondpdx
2015-12-14more carriage returns, nojbondpdx
2015-12-14removing mid-line carriage returnsjbondpdx
2015-12-14edits to READMEjbondpdx
2015-12-11Merge pull request #556 from HelenCampbell/4.10.0_prepBryan Jen
Changelog and versionbump for 4.10.0
2015-12-11Changelog and versionbump for 4.10.0Helen Campbell
2015-12-10Merge pull request #554 from kjetilho/ticket/2886-seeded_randBryan Jen
(#2886) seeded_rand: new function
2015-12-08Merge pull request #555 from puppetlabs/4.9.xTP Honey
4.9.x Mergeback
2015-12-08(#2886) seeded_rand: new functionKjetil Torgrim Homme
seeded_rand is needed for repeatable randomness across nodes in a cluster
2015-11-30Merge pull request #546 from jdevesa/validate_ipBryan Jen
Add validator for any IP address
2015-11-30Add validator for any IP addressJaume Devesa
Provide a validator for IP addresses, regardless they are IPv4 or IPv6, and its documentation.
2015-11-24Merge pull request #550 from tphoney/release_4.9.1Bryan Jen
4.9.1 release prep
2015-11-244.9.1 release preptphoney
2015-11-24Merge pull request #551 from mattbostock/fix_ipv4_docDavid Schmitt
Fix reference to validate_bool in IP4 function
2015-11-23Fix reference to validate_bool in IP4 functionMatt Bostock
The documentation in `validate_ipv4_address` references `validate_bool`, but I believe this should read `validate_ipv4_address` instead, which makes more sense.
2015-11-20Merge pull request #548 from bmjen/ruby187Hunter Haugen
Fix Gemfile to work with ruby 1.8.7
2015-11-20Fix Gemfile to work with ruby 1.8.7Bryan Jen
2015-11-20Merge pull request #543 from ghoneycutt/patch-2Bryan Jen
Use absolute class name in example
2015-11-20Merge pull request #547 from reidmv/fm_3773Bryan Jen
(FM-3773) Fix root_home fact on AIX 5.x
2015-11-19(FM-3773) Fix root_home fact on AIX 5.xReid Vandewiele
The -C (capital C) flag to lsuser is incorrect. It should be -c (lowercase). this commit updates the aix root_home fact to use `lsuser -c`, rather than `lsuser -C`.
2015-11-09Merge pull request #544 from HelenCampbell/readmeadditionDavid Schmitt
pick_default addition to readme
2015-11-09pick_default addition to readmeHelen Campbell
2015-11-06Use absolute class name in exampleGarrett Honeycutt
2015-11-06Merge pull request #542 from greg0ire/patch-1Helen
use properly encoded characters
2015-11-03use properly encoded charactersGrégoire Paris
This is more severe than it sounds. These characters make puppet fail with the following message : > Error 400 on SERVER: "\xC3" on US-ASCII