Skip to content

Commit 419f7d6

Browse files
authored
Merge pull request #691 from idnorton/master
Fixing broken link to #validate_legacy docs
2 parents 91ef0a1 + 88ed19d commit 419f7d6

File tree

1 file changed

+22
-22
lines changed

1 file changed

+22
-22
lines changed

README.markdown

Lines changed: 22 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -712,67 +712,67 @@ See the [`assert_type()`](https://docs.puppetlabs.com/references/latest/function
712712

713713
#### `is_absolute_path`
714714

715-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
715+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
716716

717717
Returns 'true' if the given path is absolute. *Type*: rvalue.
718718

719719
#### `is_array`
720720

721-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
721+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
722722

723723
Returns 'true' if the variable passed to this function is an array. *Type*: rvalue.
724724

725725
#### `is_bool`
726726

727-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
727+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
728728

729729
Returns 'true' if the variable passed to this function is a boolean. *Type*: rvalue.
730730

731731
#### `is_domain_name`
732732

733-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
733+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
734734

735735
Returns 'true' if the string passed to this function is a syntactically correct domain name. *Type*: rvalue.
736736

737737
#### `is_float`
738738

739-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
739+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
740740

741741
Returns 'true' if the variable passed to this function is a float. *Type*: rvalue.
742742

743743
#### `is_function_available`
744744

745-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
745+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
746746

747747
Accepts a string as an argument and determines whether the Puppet runtime has access to a function by that name. It returns 'true' if the function exists, 'false' if not. *Type*: rvalue.
748748

749749
#### `is_hash`
750750

751-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
751+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
752752

753753
Returns 'true' if the variable passed to this function is a hash. *Type*: rvalue.
754754

755755
#### `is_integer`
756756

757-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
757+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
758758

759759
Returns 'true' if the variable returned to this string is an integer. *Type*: rvalue.
760760

761761
#### `is_ip_address`
762762

763-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
763+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
764764

765765
Returns 'true' if the string passed to this function is a valid IP address. *Type*: rvalue.
766766

767767
#### `is_ipv6_address`
768768

769-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
769+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
770770

771771
Returns 'true' if the string passed to this function is a valid IPv6 address. *Type*: rvalue.
772772

773773
#### `is_ipv4_address`
774774

775-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
775+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
776776

777777
Returns 'true' if the string passed to this function is a valid IPv4 address. *Type*: rvalue.
778778

@@ -782,13 +782,13 @@ Returns 'true' if the string passed to this function is a valid MAC address. *Ty
782782

783783
#### `is_numeric`
784784

785-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
785+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
786786

787787
Returns 'true' if the variable passed to this function is a number. *Type*: rvalue.
788788

789789
#### `is_string`
790790

791-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
791+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
792792

793793
Returns 'true' if the variable passed to this function is a string. *Type*: rvalue.
794794

@@ -1254,7 +1254,7 @@ validate_absolute_path($undefined)
12541254

12551255
#### `validate_array`
12561256

1257-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
1257+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
12581258

12591259
Validates that all passed values are array data structures. Aborts catalog compilation if any value fails this check.
12601260

@@ -1304,7 +1304,7 @@ validate_augeas($sudoerscontent, 'Sudoers.lns', [], 'Failed to validate sudoers
13041304

13051305
#### `validate_bool`
13061306

1307-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
1307+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
13081308

13091309
Validates that all passed values are either true or false. Aborts catalog compilation if any value fails this check.
13101310

@@ -1346,7 +1346,7 @@ validate_cmd($haproxycontent, '/usr/sbin/haproxy -f % -c', 'Haproxy failed to va
13461346

13471347
#### `validate_hash`
13481348

1349-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
1349+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
13501350

13511351
Validates that all passed values are hash data structures. Aborts catalog compilation if any value fails this check.
13521352

@@ -1370,7 +1370,7 @@ Validates that all passed values are hash data structures. Aborts catalog compil
13701370

13711371
#### `validate_integer`
13721372

1373-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
1373+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
13741374

13751375
Validates that the first argument is an integer (or an array of integers). Aborts catalog compilation if any of the checks fail.
13761376

@@ -1430,7 +1430,7 @@ Validates that the first argument is an integer (or an array of integers). Abort
14301430

14311431
#### `validate_ip_address`
14321432

1433-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
1433+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
14341434

14351435
Validates that the argument is an IP address, regardless of it is an IPv4 or an IPv6
14361436
address. It also validates IP address with netmask. The argument must be given as a string.
@@ -1544,7 +1544,7 @@ Always note such changes in your CHANGELOG and README.
15441544

15451545
#### `validate_numeric`
15461546

1547-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
1547+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
15481548

15491549
Validates that the first argument is a numeric value (or an array or string of numeric values). Aborts catalog compilation if any of the checks fail.
15501550

@@ -1562,7 +1562,7 @@ Validates that the first argument is a numeric value (or an array or string of n
15621562

15631563
#### `validate_re`
15641564

1565-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
1565+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
15661566

15671567
Performs simple validation of a string against one or more regular expressions. The first argument of this function should be the string to
15681568
test, and the second argument should be a stringified regular expression (without the // delimiters) or an array of regular expressions. If none of the regular expressions match the string passed in, compilation aborts with a parse error.
@@ -1598,7 +1598,7 @@ test, and the second argument should be a stringified regular expression (withou
15981598

15991599
#### `validate_slength`
16001600

1601-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
1601+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
16021602

16031603
Validates that the first argument is a string (or an array of strings), and is less than or equal to the length of the second argument. It fails if the first argument is not a string or array of strings, or if the second argument is not convertable to a number. Optionally, a minimum string length can be given as the third argument.
16041604

@@ -1622,7 +1622,7 @@ Validates that the first argument is a string (or an array of strings), and is l
16221622

16231623
#### `validate_string`
16241624

1625-
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validatelegacy).**
1625+
**Deprecated. Will be removed in a future version of stdlib. See [`validate_legacy`](#validate_legacy).**
16261626

16271627
Validates that all passed values are string data structures. Aborts catalog compilation if any value fails this check.
16281628

0 commit comments

Comments
 (0)