diff options
author | Matt Bostock <matt@mattbostock.com> | 2016-01-19 16:22:01 +0000 |
---|---|---|
committer | Matt Bostock <matt@mattbostock.com> | 2016-01-19 16:22:01 +0000 |
commit | b7df76cf7acf5924f169e1458f0a53248fc81c08 (patch) | |
tree | c2c659d18b676a8dcd6599a84654c0bfebdacbbe | |
parent | e5be901e0e129a5b9d568bc4d7d495397c007a5c (diff) | |
download | puppet-stdlib-b7df76cf7acf5924f169e1458f0a53248fc81c08.tar.gz puppet-stdlib-b7df76cf7acf5924f169e1458f0a53248fc81c08.tar.bz2 |
Fix reference to validate_bool in function
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.
-rw-r--r-- | lib/puppet/parser/functions/validate_ip_address.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/puppet/parser/functions/validate_ip_address.rb b/lib/puppet/parser/functions/validate_ip_address.rb index c0baf82..64fbd75 100644 --- a/lib/puppet/parser/functions/validate_ip_address.rb +++ b/lib/puppet/parser/functions/validate_ip_address.rb @@ -7,12 +7,12 @@ module Puppet::Parser::Functions The following values will pass: $my_ip = "1.2.3.4" validate_ip_address($my_ip) - validate_bool("8.8.8.8", "172.16.0.1", $my_ip) + validate_ip_address("8.8.8.8", "172.16.0.1", $my_ip) $my_ip = "3ffe:505:2" validate_ip_address(1) validate_ip_address($my_ip) - validate_bool("fe80::baf6:b1ff:fe19:7507", $my_ip) + validate_ip_address("fe80::baf6:b1ff:fe19:7507", $my_ip) The following values will fail, causing compilation to abort: $some_array = [ 1, true, false, "garbage string", "3ffe:505:2" ] |