Mercurial > repos > other > Puppet
comparison modules/stdlib/metadata.json @ 0:956e484adc12
Initial public release of Puppet configs
author | IBBoard <dev@ibboard.co.uk> |
---|---|
date | Sat, 16 Aug 2014 19:47:38 +0000 |
parents | |
children | addb0ea390a1 |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:956e484adc12 |
---|---|
1 { | |
2 "types": [ | |
3 { | |
4 "doc": " A simple resource type intended to be used as an anchor in a composite class.\n\n In Puppet 2.6, when a class declares another class, the resources in the\n interior class are not contained by the exterior class. This interacts badly\n with the pattern of composing complex modules from smaller classes, as it\n makes it impossible for end users to specify order relationships between the\n exterior class and other modules.\n\n The anchor type lets you work around this. By sandwiching any interior\n classes between two no-op resources that _are_ contained by the exterior\n class, you can ensure that all resources in the module are contained.\n\n class ntp {\n # These classes will have the correct order relationship with each\n # other. However, without anchors, they won't have any order\n # relationship to Class['ntp'].\n class { 'ntp::package': }\n -> class { 'ntp::config': }\n -> class { 'ntp::service': }\n\n # These two resources \"anchor\" the composed classes within the ntp\n # class.\n anchor { 'ntp::begin': } -> Class['ntp::package']\n Class['ntp::service'] -> anchor { 'ntp::end': }\n }\n\n This allows the end user of the ntp module to establish require and before\n relationships with Class['ntp']:\n\n class { 'ntp': } -> class { 'mcollective': }\n class { 'mcollective': } -> class { 'ntp': }\n\n", | |
5 "parameters": [ | |
6 { | |
7 "doc": "The name of the anchor resource.", | |
8 "name": "name" | |
9 } | |
10 ], | |
11 "name": "anchor", | |
12 "properties": [ | |
13 | |
14 ] | |
15 }, | |
16 { | |
17 "doc": " Ensures that a given line is contained within a file. The implementation\n matches the full line, including whitespace at the beginning and end. If\n the line is not contained in the given file, Puppet will add the line to\n ensure the desired state. Multiple resources may be declared to manage\n multiple lines in the same file.\n\n Example:\n\n file_line { 'sudo_rule':\n path => '/etc/sudoers',\n line => '%sudo ALL=(ALL) ALL',\n }\n file_line { 'sudo_rule_nopw':\n path => '/etc/sudoers',\n line => '%sudonopw ALL=(ALL) NOPASSWD: ALL',\n }\n\n In this example, Puppet will ensure both of the specified lines are\n contained in the file /etc/sudoers.\n\n", | |
18 "providers": [ | |
19 { | |
20 "doc": "", | |
21 "name": "ruby" | |
22 } | |
23 ], | |
24 "parameters": [ | |
25 { | |
26 "doc": "An arbitrary name used as the identity of the resource.", | |
27 "name": "name" | |
28 }, | |
29 { | |
30 "doc": "An optional regular expression to run against existing lines in the file;\\nif a match is found, we replace that line rather than adding a new line.", | |
31 "name": "match" | |
32 }, | |
33 { | |
34 "doc": "The line to be appended to the file located by the path parameter.", | |
35 "name": "line" | |
36 }, | |
37 { | |
38 "doc": "The file Puppet will ensure contains the line specified by the line parameter.", | |
39 "name": "path" | |
40 } | |
41 ], | |
42 "name": "file_line", | |
43 "properties": [ | |
44 { | |
45 "doc": "The basic property that the resource should be in. Valid values are `present`, `absent`.", | |
46 "name": "ensure" | |
47 } | |
48 ] | |
49 } | |
50 ], | |
51 "license": "Apache 2.0", | |
52 "checksums": { | |
53 "spec/unit/puppet/parser/functions/uriescape_spec.rb": "8d9e15156d93fe29bfe91a2e83352ff4", | |
54 "Gemfile": "a7144ac8fdb2255ed7badb6b54f6c342", | |
55 "spec/unit/facter/root_home_spec.rb": "4f4c4236ac2368d2e27fd2f3eb606a19", | |
56 "spec/unit/puppet/parser/functions/size_spec.rb": "d126b696b21a8cd754d58f78ddba6f06", | |
57 "spec/unit/puppet/parser/functions/shuffle_spec.rb": "2141a54d2fb3cf725b88184d639677f4", | |
58 "spec/unit/puppet/parser/functions/validate_re_spec.rb": "b21292ad2f30c0d43ab2f0c2df0ba7d5", | |
59 "lib/puppet/parser/functions/flatten.rb": "25777b76f9719162a8bab640e5595b7a", | |
60 "lib/puppet/parser/functions/ensure_packages.rb": "ca852b2441ca44b91a984094de4e3afc", | |
61 "lib/puppet/parser/functions/validate_augeas.rb": "d4acca7b8a9fdada9ae39e5101902cc1", | |
62 "spec/unit/puppet/parser/functions/unique_spec.rb": "2df8b3b2edb9503943cb4dcb4a371867", | |
63 "tests/has_ip_network.pp": "abc05686797a776ea8c054657e6f7456", | |
64 "spec/fixtures/manifests/site.pp": "d41d8cd98f00b204e9800998ecf8427e", | |
65 "lib/puppet/parser/functions/defined_with_params.rb": "ffab4433d03f32b551f2ea024a2948fc", | |
66 "lib/puppet/parser/functions/size.rb": "8972d48c0f9e487d659bd7326b40b642", | |
67 "lib/puppet/parser/functions/has_ip_address.rb": "ee207f47906455a5aa49c4fb219dd325", | |
68 "lib/facter/util/puppet_settings.rb": "9f1d2593d0ae56bfca89d4b9266aeee1", | |
69 "spec/unit/puppet/parser/functions/any2array_spec.rb": "167e114cfa222de971bf8be141766b6a", | |
70 "spec/unit/facter/pe_required_facts_spec.rb": "0ec83db2a004a0d7f6395b34939c53b9", | |
71 "spec/unit/puppet/parser/functions/bool2num_spec.rb": "67c3055d5d4e4c9fbcaca82038a09081", | |
72 "lib/facter/root_home.rb": "f559294cceafcf70799339627d94871d", | |
73 "lib/puppet/parser/functions/loadyaml.rb": "2b912f257aa078e376d3b3f6a86c2a00", | |
74 "spec/unit/puppet/parser/functions/is_float_spec.rb": "171fc0e382d9856c2d8db2b70c9ec9cd", | |
75 "lib/puppet/type/anchor.rb": "bbd36bb49c3b554f8602d8d3df366c0c", | |
76 "lib/puppet/parser/functions/getparam.rb": "4dd7a0e35f4a3780dcfc9b19b4e0006e", | |
77 "lib/facter/facter_dot_d.rb": "b35b8b59ec579901444f984127f0b833", | |
78 "lib/puppet/parser/functions/strftime.rb": "e02e01a598ca5d7d6eee0ba22440304a", | |
79 "lib/puppet/parser/functions/max.rb": "f652fd0b46ef7d2fbdb42b141f8fdd1d", | |
80 "spec/spec_helper.rb": "4449b0cafd8f7b2fb440c0cdb0a1f2b3", | |
81 "lib/puppet/parser/functions/merge.rb": "52281fe881b762e2adfef20f58dc4180", | |
82 "lib/puppet/parser/functions/validate_slength.rb": "0ca530d1d3b45c3fe2d604c69acfc22f", | |
83 "spec/unit/puppet/parser/functions/suffix_spec.rb": "c3eed8e40066f2ad56264405c4192f2e", | |
84 "spec/unit/puppet/parser/functions/validate_bool_spec.rb": "32a580f280ba62bf17ccd30460d357bd", | |
85 "spec/unit/puppet/parser/functions/str2bool_spec.rb": "60e3eaea48b0f6efccc97010df7d912c", | |
86 "lib/puppet/parser/functions/reject.rb": "689f6a7c961a55fe9dcd240921f4c7f9", | |
87 "lib/puppet/parser/functions/delete.rb": "9b17b9f7f820adf02360147c1a2f4279", | |
88 "lib/puppet/parser/functions/strip.rb": "273d547c7b05c0598556464dfd12f5fd", | |
89 "lib/puppet/parser/functions/values.rb": "066a6e4170e5034edb9a80463dff2bb5", | |
90 "LICENSE": "38a048b9d82e713d4e1b2573e370a756", | |
91 "lib/puppet/parser/functions/is_array.rb": "875ca4356cb0d7a10606fb146b4a3d11", | |
92 "spec/unit/puppet/parser/functions/strip_spec.rb": "a01796bebbdabd3fad12b0662ea5966e", | |
93 "lib/puppet/parser/functions/swapcase.rb": "4902f38f0b9292afec66d40fee4b02ec", | |
94 "lib/puppet/parser/functions/has_ip_network.rb": "b4d726c8b2a0afac81ced8a3a28aa731", | |
95 "spec/unit/puppet/parser/functions/validate_array_spec.rb": "bcd231229554785c4270ca92ef99cb60", | |
96 "lib/puppet/parser/functions/validate_re.rb": "c6664b3943bc820415a43f16372dc2a9", | |
97 "lib/puppet/parser/functions/time.rb": "08d88d52abd1e230e3a2f82107545d48", | |
98 "lib/puppet/parser/functions/is_numeric.rb": "0a9bcc49e8f57af81bdfbb7e7c3a575c", | |
99 "spec/unit/puppet/parser/functions/merge_spec.rb": "a63c0bc2f812e27fbef570d834ef61ce", | |
100 "lib/puppet/parser/functions/count.rb": "9eb74eccd93e2b3c87fd5ea14e329eba", | |
101 "spec/unit/puppet/parser/functions/values_at_spec.rb": "de45fd8abbc4c037c3c4fac2dcf186f9", | |
102 "spec/monkey_patches/publicize_methods.rb": "ce2c98f38b683138c5ac649344a39276", | |
103 "spec/unit/puppet/parser/functions/is_hash_spec.rb": "408e121a5e30c4c5c4a0a383beb6e209", | |
104 "lib/puppet/parser/functions/chop.rb": "4691a56e6064b792ed4575e4ad3f3d20", | |
105 "spec/unit/puppet/parser/functions/validate_cmd_spec.rb": "538db08292a0ecc4cd902a14aaa55d74", | |
106 "spec/unit/puppet/parser/functions/is_integer_spec.rb": "a302cf1de5ccb494ca9614d2fc2b53c5", | |
107 "spec/functions/ensure_resource_spec.rb": "3423a445e13efc7663a71c6641d49d07", | |
108 "spec/unit/puppet/parser/functions/keys_spec.rb": "35cc2ed490dc68da6464f245dfebd617", | |
109 "manifests/init.pp": "f2ba5f36e7227ed87bbb69034fc0de8b", | |
110 "lib/puppet/parser/functions/dirname.rb": "bef7214eb89db3eb8f7ee5fc9dca0233", | |
111 "lib/puppet/parser/functions/validate_hash.rb": "e9cfaca68751524efe16ecf2f958a9a0", | |
112 "lib/puppet/parser/functions/join_keys_to_values.rb": "f29da49531228f6ca5b3aa0df00a14c2", | |
113 "spec/unit/puppet/parser/functions/delete_spec.rb": "0d84186ea618523b4b2a4ca0b5a09c9e", | |
114 "lib/puppet/parser/functions/validate_string.rb": "6afcbc51f83f0714348b8d61e06ea7eb", | |
115 "spec/unit/puppet/parser/functions/rstrip_spec.rb": "a408e933753c9c323a05d7079d32cbb3", | |
116 "spec/unit/puppet/parser/functions/fqdn_rotate_spec.rb": "c67b71737bee9936f5261d41a37bad46", | |
117 "spec/unit/puppet/parser/functions/concat_spec.rb": "c21aaa84609f92290d5ffb2ce8ea4bf5", | |
118 "lib/puppet/parser/functions/unique.rb": "217ccce6d23235af92923f50f8556963", | |
119 "CHANGELOG": "344383410cb78409f0c59ecf38e8c21a", | |
120 "lib/puppet/parser/functions/member.rb": "541e67d06bc4155e79b00843a125e9bc", | |
121 "spec/unit/puppet/parser/functions/validate_string_spec.rb": "64a4f681084cba55775a070f7fab5e0c", | |
122 "lib/facter/puppet_vardir.rb": "c7ddc97e8a84ded3dd93baa5b9b3283d", | |
123 "lib/puppet/parser/functions/pick.rb": "2bede116a0651405c47e650bbf942abe", | |
124 "spec/unit/puppet/parser/functions/parseyaml_spec.rb": "65dfed872930ffe0d21954c15daaf498", | |
125 "lib/puppet/parser/functions/delete_at.rb": "6bc24b79390d463d8be95396c963381a", | |
126 "lib/puppet/parser/functions/zip.rb": "a80782461ed9465f0cd0c010936f1855", | |
127 "tests/file_line.pp": "67727539aa7b7dd76f06626fe734f7f7", | |
128 "lib/puppet/parser/functions/ensure_resource.rb": "3f68b8e17a16bfd01455cd73f8e324ba", | |
129 "lib/puppet/parser/functions/num2bool.rb": "605c12fa518c87ed2c66ae153e0686ce", | |
130 "spec/unit/puppet/parser/functions/grep_spec.rb": "78179537496a7150469e591a95e255d8", | |
131 "lib/puppet/parser/functions/keys.rb": "eb6ac815ea14fbf423580ed903ef7bad", | |
132 "spec/unit/puppet/parser/functions/num2bool_spec.rb": "8cd5b46b7c8e612dfae3362e3a68a5f9", | |
133 "lib/puppet/parser/functions/parsejson.rb": "e7f968c34928107b84cd0860daf50ab1", | |
134 "lib/puppet/parser/functions/is_mac_address.rb": "288bd4b38d4df42a83681f13e7eaaee0", | |
135 "lib/puppet/parser/functions/join.rb": "b28087823456ca5cf943de4a233ac77f", | |
136 "spec/unit/puppet/parser/functions/type_spec.rb": "422f2c33458fe9b0cc9614d16f7573ba", | |
137 "lib/puppet/parser/functions/downcase.rb": "9204a04c2a168375a38d502db8811bbe", | |
138 "spec/unit/puppet/parser/functions/validate_augeas_spec.rb": "1d5bcfbf97dc56b45734248a14358d4f", | |
139 "spec/unit/puppet/parser/functions/has_ip_address_spec.rb": "f53c7baeaf024ff577447f6c28c0f3a7", | |
140 "lib/puppet/parser/functions/is_function_available.rb": "88c63869cb5df3402bc9756a8d40c16d", | |
141 "lib/puppet/parser/functions/prefix.rb": "21fd6a2c1ee8370964346b3bfe829d2b", | |
142 "spec/watchr.rb": "b588ddf9ef1c19ab97aa892cc776da73", | |
143 "spec/unit/puppet/parser/functions/has_key_spec.rb": "3e4e730d98bbdfb88438b6e08e45868e", | |
144 "lib/puppet/parser/functions/values_at.rb": "094ac110ce9f7a5b16d0c80a0cf2243c", | |
145 "lib/puppet/parser/functions/fqdn_rotate.rb": "20743a138c56fc806a35cb7b60137dbc", | |
146 "lib/puppet/parser/functions/rstrip.rb": "8a0d69876bdbc88a2054ba41c9c38961", | |
147 "spec/unit/puppet/parser/functions/validate_slength_spec.rb": "a1b4d805149dc0143e9a57e43e1f84bf", | |
148 "spec/functions/ensure_packages_spec.rb": "935b4aec5ab36bdd0458c1a9b2a93ad5", | |
149 "lib/puppet/parser/functions/suffix.rb": "109279db4180441e75545dbd5f273298", | |
150 "lib/puppet/parser/functions/str2saltedsha512.rb": "49afad7b386be38ce53deaefef326e85", | |
151 "spec/unit/puppet/parser/functions/count_spec.rb": "db98ef89752a7112425f0aade10108e0", | |
152 "lib/puppet/parser/functions/hash.rb": "9d072527dfc7354b69292e9302906530", | |
153 "manifests/stages.pp": "cc6ed1751d334b0ea278c0335c7f0b5a", | |
154 "spec/unit/puppet/parser/functions/is_ip_address_spec.rb": "6040a9bae4e5c853966148b634501157", | |
155 "spec/unit/facter/pe_version_spec.rb": "ef031cca838f36f99b1dab3259df96a5", | |
156 "spec/unit/puppet/parser/functions/get_module_path_spec.rb": "b7ea196f548b1a9a745ab6671295ab27", | |
157 "lib/puppet/parser/functions/is_integer.rb": "a50ebc15c30bffd759e4a6f8ec6a0cf3", | |
158 "lib/puppet/parser/functions/reverse.rb": "1386371c0f5301055fdf99079e862b3e", | |
159 "spec/unit/puppet/parser/functions/has_interface_with_spec.rb": "7c16d731c518b434c81b8cb2227cc916", | |
160 "README_SPECS.markdown": "82bb4c6abbb711f40778b162ec0070c1", | |
161 "spec/unit/puppet/parser/functions/is_domain_name_spec.rb": "8eed3a9eb9334bf6a473ad4e2cabc2ec", | |
162 "spec/unit/puppet/parser/functions/join_spec.rb": "c3b50c39390a86b493511be2c6722235", | |
163 "lib/puppet/parser/functions/chomp.rb": "719d46923d75251f7b6b68b6e015cccc", | |
164 "lib/puppet/parser/functions/is_string.rb": "2bd9a652bbb2668323eee6c57729ff64", | |
165 "spec/unit/puppet/parser/functions/is_array_spec.rb": "8c020af9c360abdbbf1ba887bb26babe", | |
166 "Modulefile": "351bba73290cd526ca7bacd4c7d250dc", | |
167 "spec/unit/puppet/parser/functions/reject_spec.rb": "8e16c9f064870e958b6278261e480954", | |
168 "spec/unit/puppet/type/file_line_spec.rb": "d9f4e08e8b98e565a07f1b995593fa89", | |
169 "spec/unit/puppet/parser/functions/lstrip_spec.rb": "1fc2c2d80b5f724a358c3cfeeaae6249", | |
170 "lib/puppet/parser/functions/type.rb": "62f914d6c90662aaae40c5539701be60", | |
171 "lib/puppet/parser/functions/shuffle.rb": "6445e6b4dc62c37b184a60eeaf34414b", | |
172 "lib/puppet/parser/functions/has_key.rb": "7cd9728c38f0b0065f832dabd62b0e7e", | |
173 "lib/puppet/parser/functions/concat.rb": "f28a09811ff4d19bb5e7a540e767d65c", | |
174 "spec/unit/puppet/parser/functions/capitalize_spec.rb": "82a4209a033fc88c624f708c12e64e2a", | |
175 "tests/init.pp": "1d98070412c76824e66db4b7eb74d433", | |
176 "lib/puppet/provider/file_line/ruby.rb": "a445a57f9b884037320ea37307dbc92b", | |
177 "tests/has_ip_address.pp": "93ce02915f67ddfb43a049b2b84ef391", | |
178 "spec/unit/puppet/parser/functions/min_spec.rb": "bf80bf58261117bb24392670b624a611", | |
179 "lib/puppet/parser/functions/to_bytes.rb": "83f23c33adbfa42b2a9d9fc2db3daeb4", | |
180 "lib/puppet/parser/functions/sort.rb": "504b033b438461ca4f9764feeb017833", | |
181 "lib/puppet/parser/functions/capitalize.rb": "14481fc8c7c83fe002066ebcf6722f17", | |
182 "lib/puppet/type/file_line.rb": "3e8222cb58f3503b3ea7de3647c602a0", | |
183 "lib/puppet/parser/functions/has_interface_with.rb": "8d3ebca805dc6edb88b6b7a13d404787", | |
184 "spec/functions/getparam_spec.rb": "122f37cf9ec7489f1dae10db39c871b5", | |
185 "Rakefile": "f37e6131fe7de9a49b09d31596f5fbf1", | |
186 "spec/unit/puppet/parser/functions/downcase_spec.rb": "b0197829512f2e92a2d2b06ce8e2226f", | |
187 "spec/unit/puppet/parser/functions/max_spec.rb": "5562bccc643443af7e4fa7c9d1e52b8b", | |
188 "lib/puppet/parser/functions/validate_absolute_path.rb": "385137ac24a2dec6cecc4e6ea75be442", | |
189 "spec/unit/puppet/parser/functions/getvar_spec.rb": "842bf88d47077a9ae64097b6e39c3364", | |
190 "spec/unit/puppet/parser/functions/sort_spec.rb": "7039cd230a94e95d9d1de2e1094acae2", | |
191 "spec/unit/puppet/parser/functions/strftime_spec.rb": "bf140883ecf3254277306fa5b25f0344", | |
192 "spec/unit/puppet/parser/functions/is_mac_address_spec.rb": "644cd498b426ff2f9ea9cbc5d8e141d7", | |
193 "spec/unit/puppet/parser/functions/empty_spec.rb": "028c30267d648a172d8a81a9262c3abe", | |
194 "lib/puppet/parser/functions/is_domain_name.rb": "fba9f855df3bbf90d72dfd5201f65d2b", | |
195 "lib/puppet/parser/functions/get_module_path.rb": "d4bf50da25c0b98d26b75354fa1bcc45", | |
196 "spec/unit/puppet/provider/file_line/ruby_spec.rb": "e8cd7432739cb212d40a9148523bd4d7", | |
197 "spec/unit/puppet/parser/functions/reverse_spec.rb": "48169990e59081ccbd112b6703418ce4", | |
198 "spec/unit/puppet/parser/functions/str2saltedsha512_spec.rb": "1de174be8835ba6fef86b590887bb2cc", | |
199 "spec/unit/puppet/parser/functions/prefix_spec.rb": "16a95b321d76e773812693c80edfbe36", | |
200 "spec/spec.opts": "a600ded995d948e393fbe2320ba8e51c", | |
201 "spec/monkey_patches/alias_should_to_must.rb": "7cd4065c63f06f1ab3aaa1c5f92af947", | |
202 "lib/puppet/parser/functions/uriescape.rb": "9ebc34f1b2f319626512b8cd7cde604c", | |
203 "lib/puppet/parser/functions/floor.rb": "c5a960e9714810ebb99198ff81a11a3b", | |
204 "lib/puppet/parser/functions/empty.rb": "ae92905c9d94ddca30bf56b7b1dabedf", | |
205 "spec/unit/puppet/parser/functions/range_spec.rb": "91d69115dea43f62a2dca9a10467d836", | |
206 "tests/has_interface_with.pp": "59c98b4af0d39fc11d1ef4c7a6dc8f7a", | |
207 "spec/unit/puppet/parser/functions/is_function_available.rb": "069ef7490eba66424cab75444f36828a", | |
208 "README_DEVELOPER.markdown": "220a8b28521b5c5d2ea87c4ddb511165", | |
209 "spec/unit/puppet/parser/functions/flatten_spec.rb": "583c9a70f93e492cfb22ffa1811f6aa0", | |
210 "lib/puppet/parser/functions/upcase.rb": "a5744a74577cfa136fca2835e75888d3", | |
211 "lib/puppet/parser/functions/str2bool.rb": "c822a8944747f5624b13f2da0df8db21", | |
212 "lib/puppet/parser/functions/is_hash.rb": "8c7d9a05084dab0389d1b779c8a05b1a", | |
213 "lib/puppet/parser/functions/abs.rb": "32161bd0435fdfc2aec2fc559d2b454b", | |
214 "spec/unit/puppet/parser/functions/validate_hash_spec.rb": "8529c74051ceb71e6b1b97c9cecdf625", | |
215 "spec/unit/puppet/parser/functions/member_spec.rb": "067c60985efc57022ca1c5508d74d77f", | |
216 "README.markdown": "b63097a958f22abf7999d475a6a4d32a", | |
217 "spec/unit/puppet/parser/functions/values_spec.rb": "0ac9e141ed1f612d7cc224f747b2d1d9", | |
218 "lib/puppet/parser/functions/validate_cmd.rb": "0319a15d24fd077ebabc2f79969f6ab5", | |
219 "lib/puppet/parser/functions/is_float.rb": "f1b0d333061d31bf0c25bd4c33dc134b", | |
220 "lib/puppet/parser/functions/bool2num.rb": "8e627eee990e811e35e7e838c586bd77", | |
221 "lib/puppet/parser/functions/validate_bool.rb": "4ddffdf5954b15863d18f392950b88f4", | |
222 "lib/puppet/parser/functions/grep.rb": "5682995af458b05f3b53dd794c4bf896", | |
223 "spec/unit/puppet/parser/functions/upcase_spec.rb": "813668919bc62cdd1d349dafc19fbbb3", | |
224 "spec/unit/puppet/parser/functions/parsejson_spec.rb": "37ab84381e035c31d6a3dd9bf73a3d53", | |
225 "spec/unit/puppet/parser/functions/squeeze_spec.rb": "df5b349c208a9a2a4d4b8e6d9324756f", | |
226 "spec/unit/puppet/parser/functions/validate_absolute_path_spec.rb": "07839082d24d5a7628fd5bce6c8b35c3", | |
227 "spec/unit/puppet/parser/functions/chop_spec.rb": "4e9534d25b952b261c9f46add677c390", | |
228 "lib/puppet/parser/functions/squeeze.rb": "541f85b4203b55c9931d3d6ecd5c75f8", | |
229 "lib/puppet/parser/functions/lstrip.rb": "210b103f78622e099f91cc2956b6f741", | |
230 "spec/unit/puppet/type/anchor_spec.rb": "a5478a72a7fab2d215f39982a9230c18", | |
231 "lib/facter/pe_version.rb": "4a9353952963b011759f3e6652a10da5", | |
232 "spec/unit/puppet/parser/functions/hash_spec.rb": "826337a92d8f7a189b7ac19615db0ed7", | |
233 "spec/unit/puppet/parser/functions/floor_spec.rb": "d01ef7dfe0245d7a0a73d7df13cb02e3", | |
234 "spec/unit/puppet/parser/functions/time_spec.rb": "b6d0279062779efe5153fe5cfafc5bbd", | |
235 "spec/unit/puppet/parser/functions/swapcase_spec.rb": "0660ce8807608cc8f98ad1edfa76a402", | |
236 "lib/puppet/parser/functions/validate_array.rb": "72b29289b8af1cfc3662ef9be78911b8", | |
237 "lib/puppet/parser/functions/is_ip_address.rb": "a714a736c1560e8739aaacd9030cca00", | |
238 "lib/puppet/parser/functions/getvar.rb": "10bf744212947bc6a7bfd2c9836dbd23", | |
239 "RELEASE_PROCESS.markdown": "94b92bc99ac4106ba1a74d5c04e520f9", | |
240 "spec/classes/anchor_spec.rb": "695d65275c3ac310d7fa23b91f8bbb4a", | |
241 "lib/puppet/parser/functions/any2array.rb": "a81e71d6b67a551d38770ba9a1948a75", | |
242 "spec/functions/defined_with_params_spec.rb": "3bdfac38e3d6f06140ff2e926f4ebed2", | |
243 "spec/unit/puppet/parser/functions/pick_spec.rb": "aba6247d3925e373272fca6768fd5403", | |
244 "spec/unit/puppet/parser/functions/to_bytes_spec.rb": "80aaf68cf7e938e46b5278c1907af6be", | |
245 "spec/unit/puppet/parser/functions/is_string_spec.rb": "5c015d8267de852da3a12b984e077092", | |
246 "spec/unit/puppet/parser/functions/abs_spec.rb": "0a5864a29a8e9e99acc483268bd5917c", | |
247 "spec/unit/facter/util/puppet_settings_spec.rb": "345bcbef720458e25be0190b7638e4d9", | |
248 "spec/unit/puppet/parser/functions/zip_spec.rb": "06a86e4e70d2aea63812582aae1d26c4", | |
249 "spec/unit/puppet/parser/functions/dirname_spec.rb": "1d7cf70468c2cfa6dacfc75935322395", | |
250 "spec/unit/puppet/parser/functions/delete_at_spec.rb": "5a4287356b5bd36a6e4c100421215b8e", | |
251 "spec/unit/puppet/parser/functions/chomp_spec.rb": "3cd8e2fe6b12efeffad94cce5b693b7c", | |
252 "spec/unit/puppet/parser/functions/join_keys_to_values_spec.rb": "7c7937411b7fe4bb944c0c022d3a96b0", | |
253 "lib/puppet/parser/functions/range.rb": "033048bba333fe429e77e0f2e91db25f", | |
254 "lib/puppet/parser/functions/parseyaml.rb": "00f10ec1e2b050e23d80c256061ebdd7", | |
255 "spec/unit/puppet/parser/functions/is_numeric_spec.rb": "5f08148803b6088c27b211c446ad3658", | |
256 "spec/unit/puppet/parser/functions/has_ip_network_spec.rb": "885ea8a4c987b735d683b742bf846cb1", | |
257 "lib/puppet/parser/functions/min.rb": "0d2a1b7e735ab251c5469e735fa3f4c6", | |
258 "CONTRIBUTING.md": "fdddc4606dc3b6949e981e6bf50bc8e5" | |
259 }, | |
260 "version": "4.1.0", | |
261 "description": "Standard Library for Puppet Modules", | |
262 "source": "git://github.com/puppetlabs/puppetlabs-stdlib.git", | |
263 "project_page": "https://github.com/puppetlabs/puppetlabs-stdlib", | |
264 "summary": "Puppet Module Standard Library", | |
265 "dependencies": [ | |
266 | |
267 ], | |
268 "author": "puppetlabs", | |
269 "name": "puppetlabs-stdlib" | |
270 } |