===========================================================
                                      .___ __  __   
          _________________  __ __  __| _/|__|/  |_ 
         / ___\_` __ \__  \ |  |  \/ __ | | \\_  __\
        / /_/  >  | \// __ \|  |  / /_/ | |  ||  |  
        \___  /|__|  (____  /____/\____ | |__||__|  
       /_____/            \/           \/           
              grep rough audit - static analysis tool
                  v2.8 written by @Wireghoul
=================================[justanotherhacker.com]===
g10k-0.5.7/tests/fake-forge/invalid-filesize-puppetlabs-ntp-metadata.json-148-  "readme": "#ntp\n\n####Table of Contents\n\n1. [Overview](#overview)\n2. [Module Description - What the module does and why it is useful](#module-description)\n3. [Setup - The basics of getting started with ntp](#setup)\n4. [Usage - Configuration options and additional functionality](#usage)\n5. [Reference - An under-the-hood peek at what the module is doing and how](#reference)\n5. [Limitations - OS compatibility, etc.](#limitations)\n6. [Development - Guide for contributing to the module](#development)\n\n##Overview\n\nThe ntp module installs, configures, and manages the NTP service.\n\n##Module Description\n\nThe ntp module handles installing, configuring, and running NTP across a range of operating systems and distributions.\n\n##Setup\n\n###Beginning with ntp\n\n`include '::ntp'` is enough to get you up and running.  If you wish to pass in parameters specifying which servers to use, then:\n\n```puppet\nclass { '::ntp':\n  servers => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n}\n```\n\n##Usage\n\nAll interaction with the ntp module can be done through the main ntp class. This means you can simply toggle the options in `::ntp` to have full functionality of the module.\n\n###I just want NTP, what's the minimum I need?\n\n```puppet\ninclude '::ntp'\n```\n\n###I just want to tweak the servers, nothing else.\n\n```puppet\nclass { '::ntp':\n  servers => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n}\n```\n\n###I'd like to make sure I restrict who can connect as well.\n\n```puppet\nclass { '::ntp':\n  servers  => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n  restrict => ['127.0.0.1'],\n}\n```\n\n###I just want to install a client that can't be queried\n\n```puppet\nclass { '::ntp':\n  servers   => ['ntp1.corp.com', 'ntp2.corp.com'],\n  restrict  => [\n    'default ignore',\n    '-6 default ignore',\n    '127.0.0.1',\n    '-6 ::1',\n    'ntp1.corp.com nomodify notrap nopeer noquery',\n    'ntp2.corp.com nomodify notrap nopeer noquery'\n  ],\n}\n```\n\n###I only want to listen on specific interfaces, not on 0.0.0.0\n\nRestricting ntp to a specific interface is especially useful on Openstack nodes which may have numerous virtual interfaces.\n\n```puppet\nclass { '::ntp':\n  servers  => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n  interfaces => ['127.0.0.1', '1.2.3.4']\n}\n```\n\n###I'd like to opt out of having the service controlled; we use another tool for that.\n\n```puppet\nclass { '::ntp':\n  servers        => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n  restrict       => ['127.0.0.1'],\n  service_manage => false,\n}\n```\n\n###I'd like to configure and run ntp, but I don't need to install it.\n\n```puppet\nclass { '::ntp':\n  package_manage => false,\n}\n```\n\n###Looks great!  But I'd like a different template; we need to do something unique here.\n\n```puppet\nclass { '::ntp':\n  servers         => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n  restrict        => ['127.0.0.1'],\n  service_manage  => false,\n  config_epp      => 'different/module/custom.template.epp',\n}\n```\n\n##Reference\n\n###Classes\n\n####Public Classes\n\n* ntp: Main class, includes all other classes.\n\n####Private Classes\n\n* ntp::install: Handles the packages.\n* ntp::config: Handles the configuration file.\n* ntp::service: Handles the service.\n\n###Parameters\n\nThe following parameters are available in the `::ntp` class:\n\n####`broadcastclient`\n\nEnable reception of broadcast server messages to any local interface.\n\n####`config`\n\nSpecifies a file for ntp's configuration info. Valid options: string containing an absolute path. Default value: '/etc/ntp.conf' (or '/etc/inet/ntp.conf' on Solaris)\n\n\n####`config_dir`\n\nSpecifies a directory for the ntp configuration files. Valid options: string containing an absolute path. Default value: undef\n\n####`config_file_mode`\n\nSpecifies a file mode for the ntp configuration file. Valid options: string containing file mode. Default value: '0664'\n\n####`config_template`\n\nSpecifies a file to act as a ERB template for the config file. Valid options: string containing a path (absolute, or relative to the module path). Example value: 'ntp/ntp.conf.erb'. Validation error will be thrown if this param is supplied as well as the `config_epp` param.\n\n####`config_epp`\n\nSpecifies a file to act as a EPP template for the config file. Valid options: string containing a path (absolute, or relative to the module path). Example value: 'ntp/ntp.conf.epp'. Validation error will be thrown if this param is supplied as well as the `config_template` param.\n\n####`disable_auth`\n\nDo  not  require cryptographic authentication for broadcast client, multicast\nclient and symmetric passive associations.\n\n####`disable_auth`\n\nDisables kernel time discipline.\n\n####`disable_dhclient`\n\nDisables `ntp-servers` in `dhclient.conf` to avoid Dhclient from managing the NTP configuration.\n\n####`disable_monitor`\n\nDisables the monitoring facility in NTP. Valid options: true or false. Default value: true\n\n####`driftfile`\n\nSpecifies an NTP driftfile. Valid options: string containing an absolute path. Default value: '/var/lib/ntp/drift' (except on AIX and Solaris)\n\n#### `fudge`\n\nUsed to provide additional information for individual clock drivers. Valid options: array containing strings that follow the `fudge` command. Default value: [ ]\n\n####`iburst_enable`\n\nSpecifies whether to enable the iburst option for every NTP peer. Valid options: true or false. Default value: false (except on AIX and Debian)\n\n####`interfaces`\n\nSpecifies one or more network interfaces for NTP to listen on. Valid options: array. Default value: [ ]\n\n####`interfaces_ignore`\n\nSpecifies one or more ignore pattern for the NTP listener configuration (e.g. all, wildcard, ipv6, ...). Valid options: array. Default value: [ ]\n\n#### `keys`\n\nDistributes keys to keys file. Valid options: array of keys. Default value: [ ]\n\n####`keys_controlkey`\n\nSpecifies the key identifier to use with the ntpq utility. Valid options: value in the range of 1 to 65,534 inclusive. Default value: ' '\n\n####`keys_enable`\n\nTells Puppet whether to enable key-based authentication. Valid options: true or false. Default value: false\n\n####`keys_file`\n\nSpecifies the complete path and location of the MD5 key file containing the keys and key identifiers used by ntpd, ntpq and ntpdc when operating with symmetric key cryptography. Valid options: string containing an absolute path. Default value: `/etc/ntp.keys` (except on RedHat and Amazon, where it is `/etc/ntp/keys`).\n\n####`keys_requestkey`\n\nSpecifies the key identifier to use with the ntpdc utility program. Valid options: value in the range of 1 to 65,534 inclusive. Default value: ' '\n\n#### `keys_trusted`:\nProvides one or more keys to be trusted by NTP. Valid options: array of keys. Default value: [ ]\n\n#### `leapfile`\n\nSpecifies a leap second file for NTP to use. Valid options: string containing an absolute path. Default value: ' '\n\n#### `logfile`\n\nSpecifies a log file for NTP to use instead of syslog. Valid options: string containing an absolute path. Default value: ' '\n\n####`minpoll`\n\nTells Puppet to use non-standard minimal poll interval of upstream servers. Valid options: 3 to 16. Default option: undef.\n\n####`maxpoll`\n\nTells Puppet to use non-standard maximal poll interval of upstream servers. Valid options: 3 to 16. Default option: undef, except FreeBSD (on FreeBSD `maxpoll` set 9 by default).\n\n####`ntpsigndsocket`\n\nTells NTP to sign packets using the socket in the ntpsigndsocket path. NTP must be configured to sign sockets for this to work.\nValid option: a path to the socket directory; for example, for Samba it would be:\n\n~~~~\nntpsigndsocket = usr/local/samba/var/lib/ntp_signd/\n~~~~\n\nDefault value: undef.\n\n####`package_ensure`\n\nTells Puppet whether the NTP package should be installed, and what version. Valid options: 'present', 'latest', or a specific version number. Default value: 'present'\n\n####`package_manage`\n\nTells Puppet whether to manage the NTP package. Valid options: true or false. Default value: true\n\n####`package_name`\n\nTells Puppet what NTP package to manage. Valid options: Array[string]. Default value: ['ntp'] (except on AIX and Solaris)\n\n####`panic`\n\nSpecifies whether NTP should \"panic\" in the event of a very large clock skew. Applies only if `tinker` option set to \"true\" or in case your environment is in virtual machine. Valid options: unsigned shortint digit. Default value: 0 if environment is virtual, undef in all other cases.\n\n####`peers`\n\nList of ntp servers which the local clock can be synchronised against, or which can synchronise against the local clock.\n\n####`preferred_servers`\n\nSpecifies one or more preferred peers. Puppet will append 'prefer' to each matching item in the `servers` array. Valid options: array. Default value: [ ]\n\n####`restrict`\n\nSpecifies one or more `restrict` options for the NTP configuration. Puppet will prefix each item with 'restrict', so you only need to list the content of the restriction. Valid options: array. Default value for most operating systems:\n\n~~~~\n[\n  'default kod nomodify notrap nopeer noquery',\n  '-6 default kod nomodify notrap nopeer noquery',\n  '127.0.0.1',\n  '-6 ::1',\n]\n~~~~\n\nDefault value for AIX systems:\n\n~~~~\n[\n  'default nomodify notrap nopeer noquery',\n  '127.0.0.1',\n]\n~~~~\n\n####`servers`\n\nSpecifies one or more servers to be used as NTP peers. Valid options: array. Default value: varies by operating system\n\n####`service_enable`\n\nTells Puppet whether to enable the NTP service at boot. Valid options: true or false. Default value: true\n\n####`service_ensure`\n\nTells Puppet whether the NTP service should be running. Valid options: 'running' or 'stopped'. Default value: 'running'\n\n####`service_manage`\n\nTells Puppet whether to manage the NTP service. Valid options: true or false. Default value: true\n\n####`service_name`\n\nTells Puppet what NTP service to manage. Valid options: string. Default value: varies by operating system\n\n####`service_provider`\n\nTells Puppet which service provider to use for NTP. Valid options: string. Default value: 'undef'\n\n####`step_tickers_file`\n\nLocation of the step tickers file on the managed system. Default value: varies by operating system\n\n####`step_tickers_template`\n\nLocation of the step tickers ERB template file. Default value: varies by operating system. Validation error will be thrown if this is specified as well as the `step_tickers_epp` param.\n\n####`step_tickers_epp`\n\nLocation of the step tickers EPP template file. Default value: varies by operating system. Validation error will be thrown if this is specified as well as the `step_tickers_template` param.\n\n####`stepout`\n\nTells puppet to change stepout. Applies only if `tinker` value is true. Valid options: unsigned shortint digit. Default value: undef.\n\n####`tos`\n\nTells Puppet to enable tos options. Valid options: true of false. Default value: false\n\n####`tos_minclock`\n\nSpecifies the minclock tos option. Valid options: numeric. Default value: 3\n\n####`tos_minsane`\n\nSpecifies the minsane tos option. Valid options: numeric. Default value: 1\n\n####`tos_floor`\n\nSpecifies the floor tos option. Valid options: numeric. Default value: 1\n\n####`tos_ceiling`\n\nSpecifies the ceiling tos option. Valid options: numeric. Default value: 15\n\n####`tos_cohort`\n\nSpecifies the cohort tos option. Valid options: '0' or '1'. Default value: 0\n\n####`tinker`\n\nTells Puppet to enable tinker options. Valid options: true of false. Default value: false\n\n####`udlc`\n\nSpecifies whether to configure ntp to use the undisciplined local clock as a time source. Valid options: true or false. Default value: false\n\n####`udlc_stratum`\n\nSpecifies the stratum the server should operate at when using the undisciplined local clock as the time source. It is strongly suggested that this value be set to no less than 10 where ntpd may be accessible outside your immediate, controlled network. Default value: 10\n\n##Limitations\n\nThis module has been tested on [all PE-supported platforms](https://forge.puppetlabs.com/supported#compat-matrix), and no issues have been identified. Additionally, it is tested (but not supported) on Solaris 10 and Fedora 20-22.\n\n##Development\n\nPuppet Labs modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can’t access the huge number of platforms and myriad of hardware, software, and deployment configurations that Puppet is intended to serve.\n\nWe want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.\n\nFor more information, see our [module contribution guide.](https://docs.puppetlabs.com/forge/contributing.html)\n\n###Contributors\n\nTo see who's already involved, see the [list of contributors.](https://github.com/puppetlabs/puppetlabs-ntp/graphs/contributors)\n",
g10k-0.5.7/tests/fake-forge/invalid-filesize-puppetlabs-ntp-metadata.json:149:  "changelog": "## Supported Releases 5.0.0 and 6.0.0\n### Summary\n\nThis double release adds new Puppet 4 features: data in modules, EPP templates, the $facts hash, and data types. The 5.0.0 release is fully backwards compatible to existing Puppet 4 configurations and provides you with [deprecation warnings](https://github.com/puppetlabs/puppetlabs-stdlib#deprecation) for every argument that will not work as expected with the final 6.0.0 release. See the [stdlib docs](https://github.com/puppetlabs/puppetlabs-stdlib#validate_legacy) for an in-depth discussion of this.\n\nIf you want to learn more about the new features used, have a look at the [NTP: A Puppet 4 language update](https://puppet.com/blog/ntp-puppet-4-language-update) blog post.\n\nIf you're still running Puppet 3, remain on the latest puppetlabs-ntp 4.x release for now, and see the documentation to [upgrade to Puppet 4](https://docs.puppet.com/puppet/4.6/reference/upgrade_major_pre.html).\n\n### Changes\n\n* [Data in modules](https://docs.puppet.com/puppet/latest/reference/lookup_quick_module.html#example-with-hiera): Moves all distribution and OS-dependent defaults into YAML files in `data/`, alleviating the need for a `params` class. Note that while this feature is currently still classed as experimental, the final implementation will support the changes here.\n* [EPP templating](https://docs.puppet.com/puppet/latest/reference/lang_template_epp.html): Uses the Puppet language as a base for templates to create simpler and safer templates. No need for Ruby anymore! You can pass in EPP templates for the `ntp.conf` and `step-tickers` files using the new `config_epp` and `step_tickers_epp` parameters.\n* [The $facts hash](https://docs.puppet.com/puppet/latest/reference/lang_facts_and_builtin_vars.html#the-factsfactname-hash): Makes facts visibly distinct from other variables for more readable and maintainable code. This helps eliminate confusion if you use a local variable whose name happens to match that of a common fact.\n* [Data types for validation](https://docs.puppet.com/puppet/4.6/reference/lang_data.html): Helps you find and replace deprecated code in existing `validate_*` functions with stricter, more readable data type notation. First upgrade to the 5.0.0 release of this module, and address all deprecation warnings before upgrading to the final 6.0.0 release. Please see the [stdlib docs](https://github.com/puppetlabs/puppetlabs-stdlib#validate_legacy) for an in-depth discussion of this process.\n\n## Supported Release 4.2.0\n### Summary\n\nA large release with many new features. Multiple additions to parameters and work contributed to OS compatibility. Also includes several bug fixes, including clean ups of code.\n\n#### Features\n- Updated spec helper for more consistency\n- Addition of config_dir variable\n- Addition of puppet TOS options\n- Added support for disabling kernel time discipline in ntp.conf\n- Update Solaris support for newer Facter, and Amazon for < 1.7.0 facter\n- Added disable_dhclient parameter\n- Added OpenSUSE 13.2 compatibility\n- Parameterize file mode of config file\n- Enhanced the default configuration\n- Debian 8 compatibility\n- Enabled usage of the $ntpsigndsocket parameter\n- Added parameter for interfaces to ignore\n- Added support for the authprov parameter\n- Additional work done for SLES 12 compatibility\n- Addition of key template options/ key distribution\n\n#### Bugfixes\n- Fix for strict variables and tests\n- Fixed test with preferred server and iburst enabled\n- Added logfile parameter test\n- Cleaned out unused cleanup code and utilities from spec_helper\n- Deprecated ntp_dirname function\n- No longer manages the keys_file parent when it would be inappropriate to do so\n- Converted license string to SPDX format\n- Removed ruby 1.8.7 and puppet 2.7 from travis-ci jobs\n\n## Supported Release 4.1.2\n###Summary\n\nSmall release for support of newer PE versions. This increments the version of PE in the metadata.json file.\n\n## Supported Release 4.1.1\n### Summary\nThis is a bugfix release to address security vulnerability CVE-2013-5211.\n\n#### Bugfixes\n- Changes the default behavior to disable monitoring as part of the solution for CVE-2013-5211.\n\n## 2015-07-21 - Supported Release 4.1.0\n### Summary\nThis release updates metadata to support new version of puppet enterprise, as well as new features, bugfixes, and test improvements.\n\n#### Features\n- Adds Solaris 10 support\n- Adds Fedora 20, 21, 22 compatibility\n\n#### Bugfixes\n- Fix default configuration for Debian (MODULES-2087)\n- Fix to ensure log file is created before service starts\n- Fixes SLES params for SLES 10, 11, 12\n\n## 2015-05-26 - Supported Release 4.0.0\n### Summary\nThis release drops puppet 2.7 support and older stdlib support. It also includes the addition of 12 new properties, as well as numerous bug fixes and other improvements.\n\n#### Backwards-incompatible changes\n- UDLC (Undisciplined local clock) is now no longer enabled by default on anything (previous was enabled on non-virtual).\n- Puppet 2.7 no longer supported\n- puppetlabs-stdlib less than 4.5.0 no longer supported\n\n#### Features\n- Readme, Metadata, and Contribution documentation improvements\n- Acceptance test improvements\n- Added the `broadcastclient` property\n- Added the `disable_auth` property\n- Added `broadcastclient` property\n- Added `disable_auth` property\n- Added `fudge` property\n- Added `peers` property\n- Added `udlc_stratum` property\n- Added `tinker` property\n- Added `minpoll` property\n- Added `maxpoll` property\n- Added `stepout` property\n- Added `leapfile` property\n\n#### Bugfixes\n- Removing equal sign as delimiter in ntp.conf for the logfile parameter.\n- Add package_manage parameter, which is set to false by default on FreeBSD\n- Fixed an issue with the `is_virtual` property\n- Fixed debian wheezy issue\n- Fix for Redhat to disable ntp restart due to dhcp ntp server updates\n\n##2014-11-04 - Supported Release 3.3.0\n###Summary\n\nThis release adds support for SLES 12.\n\n####Features\n- Added support for SLES 12\n\n##2014-10-02 - Supported Release 3.2.1\n###Summary\n\nThis is a bug-fix release addressing the security concerns of setting /etc/ntp to mode 0755 recursively.\n\n####Bugfixes\n- Do not recursively set ownership/mode of /etc/ntp\n\n##2014-09-10 - Supported Release 3.2.0\n###Summary\n\nThis is primarily a feature release. It adds a few new parameters to class `ntp`\nand adds support for Solaris 11.\n\n####Features\n- Add the `$interfaces` parameter to `ntp`\n- Add support for Solaris 10 and 11\n- Synchronized files with modulesync\n- Test updates\n- Add the `$iburst_enable` parameter to `ntp`\n\n####Bugfixes\n- Fixes for strict variables\n- Remove dependency on stdlib4\n\n##2014-06-06 - Release 3.1.2\n###Summary\n\nThis is a supported release.  This release fixes a manifest typo.\n\n##2014-06-06 - Release 3.1.1\n###Summary\n\nThis is a bugfix release to get around dependency issues in PMT 3.6.  This\nversion has a dependency on puppetlabs-stdlib >= 4 so PE3.2.x is no longer\nsupported.\n\n####Bugfixes\n- Remove deprecated Modulefile as it was causing duplicate dependencies with PMT.\n\n##2014-05-14 - Release 3.1.0\n###Summary\n\nThis release adds `disable_monitor` so you can disable the monitor functionality\nof NTP, which was recently used in NTP amplification attacks.  It also adds\nsupport for RHEL7 and Ubuntu 14.04.\n\n####Features\n- Add `disable_monitor`\n\n####Bugfixes\n\n#####Known Bugs\n* No known bugs\n\n##2014-04-09 - Supported Release 3.0.4\n###Summary\nThis is a supported release.\n\nThe only functional change in this release is to split up the restrict\ndefaults to be per operating system so that we can provide safer defaults\nfor AIX, to resolve cases where IPv6 are disabled.\n\n####Features\n- Rework restrict defaults.\n\n####Bugfixes\n- Fix up a comment.\n- Fix a test to work better on PE.\n\n#####Known Bugs\n* No known bugs\n\n##2014-03-04 - Supported Release 3.0.3\n###Summary\nThis is a supported release. Correct stdlib compatibility\n\n####Bugfixes\n- Remove `dirname()` call for correct stdlib compatibility.\n- Improved tests\n\n####Known Bugs\n* No known bugs\n\n\n## 2014-02-13 - Release 3.0.2\n###Summary\n\nNo functional changes: Update the README and allow custom gem sources.\n\n## 2013-12-17 - Release 3.0.1\n### Summary\n\nWork around a packaging bug with symlinks, no other functional changes.\n\n## 2013-12-13 - Release 3.0.0\n### Summary\n\nFinal release of 3.0, enjoy!\n\n\n## 2013-10-14 - Version 3.0.0-rc1\n\n###Summary\n\nThis release changes the behavior of restrict and adds AIX osfamily support.\n\n####Backwards-incompatible Changes:\n\n`restrict` no longer requires you to pass in parameters as:\n\nrestrict => [ 'restrict x', 'restrict y' ]\n\nbut just as:\n\nrestrict => [ 'x', 'y' ]\n\nAs the template now prefixes each line with restrict.\n\n####Features\n- Change the behavior of `restrict` so you no longer need the restrict\nkeyword.\n- Add `udlc` parameter to enable undisciplined local clock regardless of the\nmachines status as a virtual machine.\n- Add AIX support.\n\n####Fixes\n- Use class{} instead of including and then anchoring. (style)\n- Extend Gentoo coverage to Facter 1.7.\n\n---\n##2013-09-05 - Version 2.0.1\n\n###Summary\n\nCorrect the LICENSE file.\n\n####Bugfixes\n- Add in the appropriate year and name in LICENSE.\n\n\n##2013-07-31 - Version 2.0.0\n\n###Summary\n\nThe 2.0 release focuses on merging all the distro specific\ntemplates into a single reusable template across all platforms.\n\nTo aid in that goal we now allow you to change the driftfile,\nntp keys, and perferred_servers.\n\n####Backwards-incompatible changes\n\nAs all the distro specific templates have been removed and a\nunified one created you may be missing functionality you\npreviously relied on.  Please test carefully before rolling\nout globally.\n\nConfiguration directives that might possibly be affected:\n- `filegen`\n- `fudge` (for virtual machines)\n- `keys`\n- `logfile`\n- `restrict`\n- `restrictkey`\n- `statistics`\n- `trustedkey`\n\n####Features:\n- All templates merged into a single template.\n- NTP Keys support added.\n- Add preferred servers support.\n- Parameters in `ntp` class:\n  - `driftfile`: path for the ntp driftfile.\n  - `keys_enable`: Enable NTP keys feature.\n  - `keys_file`: Path for the NTP keys file.\n  - `keys_trusted`: Which keys to trust.\n  - `keys_controlkey`: Which key to use for the control key.\n  - `keys_requestkey`: Which key to use for the request key.\n  - `preferred_servers`: Array of servers to prefer.\n  - `restrict`: Array of restriction options to apply.\n\n---\n###2013-07-15 - Version 1.0.1\n####Bugfixes\n- Fix deprecated warning in `autoupdate` parameter.\n- Correctly quote is_virtual fact.\n\n\n##2013-07-08 - Version 1.0.0\n####Features\n- Completely refactored to split across several classes.\n- rspec-puppet tests rewritten to cover more options.\n- rspec-system tests added.\n- ArchLinux handled via osfamily instead of special casing.\n- parameters in `ntp` class:\n  - `autoupdate`: deprecated in favor of directly setting package_ensure.\n  - `panic`: set to false if you wish to allow large clock skews.\n\n---\n##2011-11-10 Dan Bode <dan@puppetlabs.com> - 0.0.4\n* Add Amazon Linux as a supported platform\n* Add unit tests\n\n\n##2011-06-16 Jeff McCune <jeff@puppetlabs.com> - 0.0.3\n* Initial release under puppetlabs\n",
g10k-0.5.7/tests/fake-forge/invalid-filesize-puppetlabs-ntp-metadata.json-150-  "license": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n",
##############################################
g10k-0.5.7/tests/fake-forge/invalid-md5sum-puppetlabs-ntp-metadata.json-148-  "readme": "#ntp\n\n####Table of Contents\n\n1. [Overview](#overview)\n2. [Module Description - What the module does and why it is useful](#module-description)\n3. [Setup - The basics of getting started with ntp](#setup)\n4. [Usage - Configuration options and additional functionality](#usage)\n5. [Reference - An under-the-hood peek at what the module is doing and how](#reference)\n5. [Limitations - OS compatibility, etc.](#limitations)\n6. [Development - Guide for contributing to the module](#development)\n\n##Overview\n\nThe ntp module installs, configures, and manages the NTP service.\n\n##Module Description\n\nThe ntp module handles installing, configuring, and running NTP across a range of operating systems and distributions.\n\n##Setup\n\n###Beginning with ntp\n\n`include '::ntp'` is enough to get you up and running.  If you wish to pass in parameters specifying which servers to use, then:\n\n```puppet\nclass { '::ntp':\n  servers => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n}\n```\n\n##Usage\n\nAll interaction with the ntp module can be done through the main ntp class. This means you can simply toggle the options in `::ntp` to have full functionality of the module.\n\n###I just want NTP, what's the minimum I need?\n\n```puppet\ninclude '::ntp'\n```\n\n###I just want to tweak the servers, nothing else.\n\n```puppet\nclass { '::ntp':\n  servers => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n}\n```\n\n###I'd like to make sure I restrict who can connect as well.\n\n```puppet\nclass { '::ntp':\n  servers  => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n  restrict => ['127.0.0.1'],\n}\n```\n\n###I just want to install a client that can't be queried\n\n```puppet\nclass { '::ntp':\n  servers   => ['ntp1.corp.com', 'ntp2.corp.com'],\n  restrict  => [\n    'default ignore',\n    '-6 default ignore',\n    '127.0.0.1',\n    '-6 ::1',\n    'ntp1.corp.com nomodify notrap nopeer noquery',\n    'ntp2.corp.com nomodify notrap nopeer noquery'\n  ],\n}\n```\n\n###I only want to listen on specific interfaces, not on 0.0.0.0\n\nRestricting ntp to a specific interface is especially useful on Openstack nodes which may have numerous virtual interfaces.\n\n```puppet\nclass { '::ntp':\n  servers  => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n  interfaces => ['127.0.0.1', '1.2.3.4']\n}\n```\n\n###I'd like to opt out of having the service controlled; we use another tool for that.\n\n```puppet\nclass { '::ntp':\n  servers        => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n  restrict       => ['127.0.0.1'],\n  service_manage => false,\n}\n```\n\n###I'd like to configure and run ntp, but I don't need to install it.\n\n```puppet\nclass { '::ntp':\n  package_manage => false,\n}\n```\n\n###Looks great!  But I'd like a different template; we need to do something unique here.\n\n```puppet\nclass { '::ntp':\n  servers         => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n  restrict        => ['127.0.0.1'],\n  service_manage  => false,\n  config_epp      => 'different/module/custom.template.epp',\n}\n```\n\n##Reference\n\n###Classes\n\n####Public Classes\n\n* ntp: Main class, includes all other classes.\n\n####Private Classes\n\n* ntp::install: Handles the packages.\n* ntp::config: Handles the configuration file.\n* ntp::service: Handles the service.\n\n###Parameters\n\nThe following parameters are available in the `::ntp` class:\n\n####`broadcastclient`\n\nEnable reception of broadcast server messages to any local interface.\n\n####`config`\n\nSpecifies a file for ntp's configuration info. Valid options: string containing an absolute path. Default value: '/etc/ntp.conf' (or '/etc/inet/ntp.conf' on Solaris)\n\n\n####`config_dir`\n\nSpecifies a directory for the ntp configuration files. Valid options: string containing an absolute path. Default value: undef\n\n####`config_file_mode`\n\nSpecifies a file mode for the ntp configuration file. Valid options: string containing file mode. Default value: '0664'\n\n####`config_template`\n\nSpecifies a file to act as a ERB template for the config file. Valid options: string containing a path (absolute, or relative to the module path). Example value: 'ntp/ntp.conf.erb'. Validation error will be thrown if this param is supplied as well as the `config_epp` param.\n\n####`config_epp`\n\nSpecifies a file to act as a EPP template for the config file. Valid options: string containing a path (absolute, or relative to the module path). Example value: 'ntp/ntp.conf.epp'. Validation error will be thrown if this param is supplied as well as the `config_template` param.\n\n####`disable_auth`\n\nDo  not  require cryptographic authentication for broadcast client, multicast\nclient and symmetric passive associations.\n\n####`disable_auth`\n\nDisables kernel time discipline.\n\n####`disable_dhclient`\n\nDisables `ntp-servers` in `dhclient.conf` to avoid Dhclient from managing the NTP configuration.\n\n####`disable_monitor`\n\nDisables the monitoring facility in NTP. Valid options: true or false. Default value: true\n\n####`driftfile`\n\nSpecifies an NTP driftfile. Valid options: string containing an absolute path. Default value: '/var/lib/ntp/drift' (except on AIX and Solaris)\n\n#### `fudge`\n\nUsed to provide additional information for individual clock drivers. Valid options: array containing strings that follow the `fudge` command. Default value: [ ]\n\n####`iburst_enable`\n\nSpecifies whether to enable the iburst option for every NTP peer. Valid options: true or false. Default value: false (except on AIX and Debian)\n\n####`interfaces`\n\nSpecifies one or more network interfaces for NTP to listen on. Valid options: array. Default value: [ ]\n\n####`interfaces_ignore`\n\nSpecifies one or more ignore pattern for the NTP listener configuration (e.g. all, wildcard, ipv6, ...). Valid options: array. Default value: [ ]\n\n#### `keys`\n\nDistributes keys to keys file. Valid options: array of keys. Default value: [ ]\n\n####`keys_controlkey`\n\nSpecifies the key identifier to use with the ntpq utility. Valid options: value in the range of 1 to 65,534 inclusive. Default value: ' '\n\n####`keys_enable`\n\nTells Puppet whether to enable key-based authentication. Valid options: true or false. Default value: false\n\n####`keys_file`\n\nSpecifies the complete path and location of the MD5 key file containing the keys and key identifiers used by ntpd, ntpq and ntpdc when operating with symmetric key cryptography. Valid options: string containing an absolute path. Default value: `/etc/ntp.keys` (except on RedHat and Amazon, where it is `/etc/ntp/keys`).\n\n####`keys_requestkey`\n\nSpecifies the key identifier to use with the ntpdc utility program. Valid options: value in the range of 1 to 65,534 inclusive. Default value: ' '\n\n#### `keys_trusted`:\nProvides one or more keys to be trusted by NTP. Valid options: array of keys. Default value: [ ]\n\n#### `leapfile`\n\nSpecifies a leap second file for NTP to use. Valid options: string containing an absolute path. Default value: ' '\n\n#### `logfile`\n\nSpecifies a log file for NTP to use instead of syslog. Valid options: string containing an absolute path. Default value: ' '\n\n####`minpoll`\n\nTells Puppet to use non-standard minimal poll interval of upstream servers. Valid options: 3 to 16. Default option: undef.\n\n####`maxpoll`\n\nTells Puppet to use non-standard maximal poll interval of upstream servers. Valid options: 3 to 16. Default option: undef, except FreeBSD (on FreeBSD `maxpoll` set 9 by default).\n\n####`ntpsigndsocket`\n\nTells NTP to sign packets using the socket in the ntpsigndsocket path. NTP must be configured to sign sockets for this to work.\nValid option: a path to the socket directory; for example, for Samba it would be:\n\n~~~~\nntpsigndsocket = usr/local/samba/var/lib/ntp_signd/\n~~~~\n\nDefault value: undef.\n\n####`package_ensure`\n\nTells Puppet whether the NTP package should be installed, and what version. Valid options: 'present', 'latest', or a specific version number. Default value: 'present'\n\n####`package_manage`\n\nTells Puppet whether to manage the NTP package. Valid options: true or false. Default value: true\n\n####`package_name`\n\nTells Puppet what NTP package to manage. Valid options: Array[string]. Default value: ['ntp'] (except on AIX and Solaris)\n\n####`panic`\n\nSpecifies whether NTP should \"panic\" in the event of a very large clock skew. Applies only if `tinker` option set to \"true\" or in case your environment is in virtual machine. Valid options: unsigned shortint digit. Default value: 0 if environment is virtual, undef in all other cases.\n\n####`peers`\n\nList of ntp servers which the local clock can be synchronised against, or which can synchronise against the local clock.\n\n####`preferred_servers`\n\nSpecifies one or more preferred peers. Puppet will append 'prefer' to each matching item in the `servers` array. Valid options: array. Default value: [ ]\n\n####`restrict`\n\nSpecifies one or more `restrict` options for the NTP configuration. Puppet will prefix each item with 'restrict', so you only need to list the content of the restriction. Valid options: array. Default value for most operating systems:\n\n~~~~\n[\n  'default kod nomodify notrap nopeer noquery',\n  '-6 default kod nomodify notrap nopeer noquery',\n  '127.0.0.1',\n  '-6 ::1',\n]\n~~~~\n\nDefault value for AIX systems:\n\n~~~~\n[\n  'default nomodify notrap nopeer noquery',\n  '127.0.0.1',\n]\n~~~~\n\n####`servers`\n\nSpecifies one or more servers to be used as NTP peers. Valid options: array. Default value: varies by operating system\n\n####`service_enable`\n\nTells Puppet whether to enable the NTP service at boot. Valid options: true or false. Default value: true\n\n####`service_ensure`\n\nTells Puppet whether the NTP service should be running. Valid options: 'running' or 'stopped'. Default value: 'running'\n\n####`service_manage`\n\nTells Puppet whether to manage the NTP service. Valid options: true or false. Default value: true\n\n####`service_name`\n\nTells Puppet what NTP service to manage. Valid options: string. Default value: varies by operating system\n\n####`service_provider`\n\nTells Puppet which service provider to use for NTP. Valid options: string. Default value: 'undef'\n\n####`step_tickers_file`\n\nLocation of the step tickers file on the managed system. Default value: varies by operating system\n\n####`step_tickers_template`\n\nLocation of the step tickers ERB template file. Default value: varies by operating system. Validation error will be thrown if this is specified as well as the `step_tickers_epp` param.\n\n####`step_tickers_epp`\n\nLocation of the step tickers EPP template file. Default value: varies by operating system. Validation error will be thrown if this is specified as well as the `step_tickers_template` param.\n\n####`stepout`\n\nTells puppet to change stepout. Applies only if `tinker` value is true. Valid options: unsigned shortint digit. Default value: undef.\n\n####`tos`\n\nTells Puppet to enable tos options. Valid options: true of false. Default value: false\n\n####`tos_minclock`\n\nSpecifies the minclock tos option. Valid options: numeric. Default value: 3\n\n####`tos_minsane`\n\nSpecifies the minsane tos option. Valid options: numeric. Default value: 1\n\n####`tos_floor`\n\nSpecifies the floor tos option. Valid options: numeric. Default value: 1\n\n####`tos_ceiling`\n\nSpecifies the ceiling tos option. Valid options: numeric. Default value: 15\n\n####`tos_cohort`\n\nSpecifies the cohort tos option. Valid options: '0' or '1'. Default value: 0\n\n####`tinker`\n\nTells Puppet to enable tinker options. Valid options: true of false. Default value: false\n\n####`udlc`\n\nSpecifies whether to configure ntp to use the undisciplined local clock as a time source. Valid options: true or false. Default value: false\n\n####`udlc_stratum`\n\nSpecifies the stratum the server should operate at when using the undisciplined local clock as the time source. It is strongly suggested that this value be set to no less than 10 where ntpd may be accessible outside your immediate, controlled network. Default value: 10\n\n##Limitations\n\nThis module has been tested on [all PE-supported platforms](https://forge.puppetlabs.com/supported#compat-matrix), and no issues have been identified. Additionally, it is tested (but not supported) on Solaris 10 and Fedora 20-22.\n\n##Development\n\nPuppet Labs modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can’t access the huge number of platforms and myriad of hardware, software, and deployment configurations that Puppet is intended to serve.\n\nWe want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.\n\nFor more information, see our [module contribution guide.](https://docs.puppetlabs.com/forge/contributing.html)\n\n###Contributors\n\nTo see who's already involved, see the [list of contributors.](https://github.com/puppetlabs/puppetlabs-ntp/graphs/contributors)\n",
g10k-0.5.7/tests/fake-forge/invalid-md5sum-puppetlabs-ntp-metadata.json:149:  "changelog": "## Supported Releases 5.0.0 and 6.0.0\n### Summary\n\nThis double release adds new Puppet 4 features: data in modules, EPP templates, the $facts hash, and data types. The 5.0.0 release is fully backwards compatible to existing Puppet 4 configurations and provides you with [deprecation warnings](https://github.com/puppetlabs/puppetlabs-stdlib#deprecation) for every argument that will not work as expected with the final 6.0.0 release. See the [stdlib docs](https://github.com/puppetlabs/puppetlabs-stdlib#validate_legacy) for an in-depth discussion of this.\n\nIf you want to learn more about the new features used, have a look at the [NTP: A Puppet 4 language update](https://puppet.com/blog/ntp-puppet-4-language-update) blog post.\n\nIf you're still running Puppet 3, remain on the latest puppetlabs-ntp 4.x release for now, and see the documentation to [upgrade to Puppet 4](https://docs.puppet.com/puppet/4.6/reference/upgrade_major_pre.html).\n\n### Changes\n\n* [Data in modules](https://docs.puppet.com/puppet/latest/reference/lookup_quick_module.html#example-with-hiera): Moves all distribution and OS-dependent defaults into YAML files in `data/`, alleviating the need for a `params` class. Note that while this feature is currently still classed as experimental, the final implementation will support the changes here.\n* [EPP templating](https://docs.puppet.com/puppet/latest/reference/lang_template_epp.html): Uses the Puppet language as a base for templates to create simpler and safer templates. No need for Ruby anymore! You can pass in EPP templates for the `ntp.conf` and `step-tickers` files using the new `config_epp` and `step_tickers_epp` parameters.\n* [The $facts hash](https://docs.puppet.com/puppet/latest/reference/lang_facts_and_builtin_vars.html#the-factsfactname-hash): Makes facts visibly distinct from other variables for more readable and maintainable code. This helps eliminate confusion if you use a local variable whose name happens to match that of a common fact.\n* [Data types for validation](https://docs.puppet.com/puppet/4.6/reference/lang_data.html): Helps you find and replace deprecated code in existing `validate_*` functions with stricter, more readable data type notation. First upgrade to the 5.0.0 release of this module, and address all deprecation warnings before upgrading to the final 6.0.0 release. Please see the [stdlib docs](https://github.com/puppetlabs/puppetlabs-stdlib#validate_legacy) for an in-depth discussion of this process.\n\n## Supported Release 4.2.0\n### Summary\n\nA large release with many new features. Multiple additions to parameters and work contributed to OS compatibility. Also includes several bug fixes, including clean ups of code.\n\n#### Features\n- Updated spec helper for more consistency\n- Addition of config_dir variable\n- Addition of puppet TOS options\n- Added support for disabling kernel time discipline in ntp.conf\n- Update Solaris support for newer Facter, and Amazon for < 1.7.0 facter\n- Added disable_dhclient parameter\n- Added OpenSUSE 13.2 compatibility\n- Parameterize file mode of config file\n- Enhanced the default configuration\n- Debian 8 compatibility\n- Enabled usage of the $ntpsigndsocket parameter\n- Added parameter for interfaces to ignore\n- Added support for the authprov parameter\n- Additional work done for SLES 12 compatibility\n- Addition of key template options/ key distribution\n\n#### Bugfixes\n- Fix for strict variables and tests\n- Fixed test with preferred server and iburst enabled\n- Added logfile parameter test\n- Cleaned out unused cleanup code and utilities from spec_helper\n- Deprecated ntp_dirname function\n- No longer manages the keys_file parent when it would be inappropriate to do so\n- Converted license string to SPDX format\n- Removed ruby 1.8.7 and puppet 2.7 from travis-ci jobs\n\n## Supported Release 4.1.2\n###Summary\n\nSmall release for support of newer PE versions. This increments the version of PE in the metadata.json file.\n\n## Supported Release 4.1.1\n### Summary\nThis is a bugfix release to address security vulnerability CVE-2013-5211.\n\n#### Bugfixes\n- Changes the default behavior to disable monitoring as part of the solution for CVE-2013-5211.\n\n## 2015-07-21 - Supported Release 4.1.0\n### Summary\nThis release updates metadata to support new version of puppet enterprise, as well as new features, bugfixes, and test improvements.\n\n#### Features\n- Adds Solaris 10 support\n- Adds Fedora 20, 21, 22 compatibility\n\n#### Bugfixes\n- Fix default configuration for Debian (MODULES-2087)\n- Fix to ensure log file is created before service starts\n- Fixes SLES params for SLES 10, 11, 12\n\n## 2015-05-26 - Supported Release 4.0.0\n### Summary\nThis release drops puppet 2.7 support and older stdlib support. It also includes the addition of 12 new properties, as well as numerous bug fixes and other improvements.\n\n#### Backwards-incompatible changes\n- UDLC (Undisciplined local clock) is now no longer enabled by default on anything (previous was enabled on non-virtual).\n- Puppet 2.7 no longer supported\n- puppetlabs-stdlib less than 4.5.0 no longer supported\n\n#### Features\n- Readme, Metadata, and Contribution documentation improvements\n- Acceptance test improvements\n- Added the `broadcastclient` property\n- Added the `disable_auth` property\n- Added `broadcastclient` property\n- Added `disable_auth` property\n- Added `fudge` property\n- Added `peers` property\n- Added `udlc_stratum` property\n- Added `tinker` property\n- Added `minpoll` property\n- Added `maxpoll` property\n- Added `stepout` property\n- Added `leapfile` property\n\n#### Bugfixes\n- Removing equal sign as delimiter in ntp.conf for the logfile parameter.\n- Add package_manage parameter, which is set to false by default on FreeBSD\n- Fixed an issue with the `is_virtual` property\n- Fixed debian wheezy issue\n- Fix for Redhat to disable ntp restart due to dhcp ntp server updates\n\n##2014-11-04 - Supported Release 3.3.0\n###Summary\n\nThis release adds support for SLES 12.\n\n####Features\n- Added support for SLES 12\n\n##2014-10-02 - Supported Release 3.2.1\n###Summary\n\nThis is a bug-fix release addressing the security concerns of setting /etc/ntp to mode 0755 recursively.\n\n####Bugfixes\n- Do not recursively set ownership/mode of /etc/ntp\n\n##2014-09-10 - Supported Release 3.2.0\n###Summary\n\nThis is primarily a feature release. It adds a few new parameters to class `ntp`\nand adds support for Solaris 11.\n\n####Features\n- Add the `$interfaces` parameter to `ntp`\n- Add support for Solaris 10 and 11\n- Synchronized files with modulesync\n- Test updates\n- Add the `$iburst_enable` parameter to `ntp`\n\n####Bugfixes\n- Fixes for strict variables\n- Remove dependency on stdlib4\n\n##2014-06-06 - Release 3.1.2\n###Summary\n\nThis is a supported release.  This release fixes a manifest typo.\n\n##2014-06-06 - Release 3.1.1\n###Summary\n\nThis is a bugfix release to get around dependency issues in PMT 3.6.  This\nversion has a dependency on puppetlabs-stdlib >= 4 so PE3.2.x is no longer\nsupported.\n\n####Bugfixes\n- Remove deprecated Modulefile as it was causing duplicate dependencies with PMT.\n\n##2014-05-14 - Release 3.1.0\n###Summary\n\nThis release adds `disable_monitor` so you can disable the monitor functionality\nof NTP, which was recently used in NTP amplification attacks.  It also adds\nsupport for RHEL7 and Ubuntu 14.04.\n\n####Features\n- Add `disable_monitor`\n\n####Bugfixes\n\n#####Known Bugs\n* No known bugs\n\n##2014-04-09 - Supported Release 3.0.4\n###Summary\nThis is a supported release.\n\nThe only functional change in this release is to split up the restrict\ndefaults to be per operating system so that we can provide safer defaults\nfor AIX, to resolve cases where IPv6 are disabled.\n\n####Features\n- Rework restrict defaults.\n\n####Bugfixes\n- Fix up a comment.\n- Fix a test to work better on PE.\n\n#####Known Bugs\n* No known bugs\n\n##2014-03-04 - Supported Release 3.0.3\n###Summary\nThis is a supported release. Correct stdlib compatibility\n\n####Bugfixes\n- Remove `dirname()` call for correct stdlib compatibility.\n- Improved tests\n\n####Known Bugs\n* No known bugs\n\n\n## 2014-02-13 - Release 3.0.2\n###Summary\n\nNo functional changes: Update the README and allow custom gem sources.\n\n## 2013-12-17 - Release 3.0.1\n### Summary\n\nWork around a packaging bug with symlinks, no other functional changes.\n\n## 2013-12-13 - Release 3.0.0\n### Summary\n\nFinal release of 3.0, enjoy!\n\n\n## 2013-10-14 - Version 3.0.0-rc1\n\n###Summary\n\nThis release changes the behavior of restrict and adds AIX osfamily support.\n\n####Backwards-incompatible Changes:\n\n`restrict` no longer requires you to pass in parameters as:\n\nrestrict => [ 'restrict x', 'restrict y' ]\n\nbut just as:\n\nrestrict => [ 'x', 'y' ]\n\nAs the template now prefixes each line with restrict.\n\n####Features\n- Change the behavior of `restrict` so you no longer need the restrict\nkeyword.\n- Add `udlc` parameter to enable undisciplined local clock regardless of the\nmachines status as a virtual machine.\n- Add AIX support.\n\n####Fixes\n- Use class{} instead of including and then anchoring. (style)\n- Extend Gentoo coverage to Facter 1.7.\n\n---\n##2013-09-05 - Version 2.0.1\n\n###Summary\n\nCorrect the LICENSE file.\n\n####Bugfixes\n- Add in the appropriate year and name in LICENSE.\n\n\n##2013-07-31 - Version 2.0.0\n\n###Summary\n\nThe 2.0 release focuses on merging all the distro specific\ntemplates into a single reusable template across all platforms.\n\nTo aid in that goal we now allow you to change the driftfile,\nntp keys, and perferred_servers.\n\n####Backwards-incompatible changes\n\nAs all the distro specific templates have been removed and a\nunified one created you may be missing functionality you\npreviously relied on.  Please test carefully before rolling\nout globally.\n\nConfiguration directives that might possibly be affected:\n- `filegen`\n- `fudge` (for virtual machines)\n- `keys`\n- `logfile`\n- `restrict`\n- `restrictkey`\n- `statistics`\n- `trustedkey`\n\n####Features:\n- All templates merged into a single template.\n- NTP Keys support added.\n- Add preferred servers support.\n- Parameters in `ntp` class:\n  - `driftfile`: path for the ntp driftfile.\n  - `keys_enable`: Enable NTP keys feature.\n  - `keys_file`: Path for the NTP keys file.\n  - `keys_trusted`: Which keys to trust.\n  - `keys_controlkey`: Which key to use for the control key.\n  - `keys_requestkey`: Which key to use for the request key.\n  - `preferred_servers`: Array of servers to prefer.\n  - `restrict`: Array of restriction options to apply.\n\n---\n###2013-07-15 - Version 1.0.1\n####Bugfixes\n- Fix deprecated warning in `autoupdate` parameter.\n- Correctly quote is_virtual fact.\n\n\n##2013-07-08 - Version 1.0.0\n####Features\n- Completely refactored to split across several classes.\n- rspec-puppet tests rewritten to cover more options.\n- rspec-system tests added.\n- ArchLinux handled via osfamily instead of special casing.\n- parameters in `ntp` class:\n  - `autoupdate`: deprecated in favor of directly setting package_ensure.\n  - `panic`: set to false if you wish to allow large clock skews.\n\n---\n##2011-11-10 Dan Bode <dan@puppetlabs.com> - 0.0.4\n* Add Amazon Linux as a supported platform\n* Add unit tests\n\n\n##2011-06-16 Jeff McCune <jeff@puppetlabs.com> - 0.0.3\n* Initial release under puppetlabs\n",
g10k-0.5.7/tests/fake-forge/invalid-md5sum-puppetlabs-ntp-metadata.json-150-  "license": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n",
##############################################
g10k-0.5.7/tests/fake-forge/invalid-sha256sum-puppetlabs-ntp-metadata.json-148-  "readme": "#ntp\n\n####Table of Contents\n\n1. [Overview](#overview)\n2. [Module Description - What the module does and why it is useful](#module-description)\n3. [Setup - The basics of getting started with ntp](#setup)\n4. [Usage - Configuration options and additional functionality](#usage)\n5. [Reference - An under-the-hood peek at what the module is doing and how](#reference)\n5. [Limitations - OS compatibility, etc.](#limitations)\n6. [Development - Guide for contributing to the module](#development)\n\n##Overview\n\nThe ntp module installs, configures, and manages the NTP service.\n\n##Module Description\n\nThe ntp module handles installing, configuring, and running NTP across a range of operating systems and distributions.\n\n##Setup\n\n###Beginning with ntp\n\n`include '::ntp'` is enough to get you up and running.  If you wish to pass in parameters specifying which servers to use, then:\n\n```puppet\nclass { '::ntp':\n  servers => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n}\n```\n\n##Usage\n\nAll interaction with the ntp module can be done through the main ntp class. This means you can simply toggle the options in `::ntp` to have full functionality of the module.\n\n###I just want NTP, what's the minimum I need?\n\n```puppet\ninclude '::ntp'\n```\n\n###I just want to tweak the servers, nothing else.\n\n```puppet\nclass { '::ntp':\n  servers => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n}\n```\n\n###I'd like to make sure I restrict who can connect as well.\n\n```puppet\nclass { '::ntp':\n  servers  => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n  restrict => ['127.0.0.1'],\n}\n```\n\n###I just want to install a client that can't be queried\n\n```puppet\nclass { '::ntp':\n  servers   => ['ntp1.corp.com', 'ntp2.corp.com'],\n  restrict  => [\n    'default ignore',\n    '-6 default ignore',\n    '127.0.0.1',\n    '-6 ::1',\n    'ntp1.corp.com nomodify notrap nopeer noquery',\n    'ntp2.corp.com nomodify notrap nopeer noquery'\n  ],\n}\n```\n\n###I only want to listen on specific interfaces, not on 0.0.0.0\n\nRestricting ntp to a specific interface is especially useful on Openstack nodes which may have numerous virtual interfaces.\n\n```puppet\nclass { '::ntp':\n  servers  => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n  interfaces => ['127.0.0.1', '1.2.3.4']\n}\n```\n\n###I'd like to opt out of having the service controlled; we use another tool for that.\n\n```puppet\nclass { '::ntp':\n  servers        => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n  restrict       => ['127.0.0.1'],\n  service_manage => false,\n}\n```\n\n###I'd like to configure and run ntp, but I don't need to install it.\n\n```puppet\nclass { '::ntp':\n  package_manage => false,\n}\n```\n\n###Looks great!  But I'd like a different template; we need to do something unique here.\n\n```puppet\nclass { '::ntp':\n  servers         => [ 'ntp1.corp.com', 'ntp2.corp.com' ],\n  restrict        => ['127.0.0.1'],\n  service_manage  => false,\n  config_epp      => 'different/module/custom.template.epp',\n}\n```\n\n##Reference\n\n###Classes\n\n####Public Classes\n\n* ntp: Main class, includes all other classes.\n\n####Private Classes\n\n* ntp::install: Handles the packages.\n* ntp::config: Handles the configuration file.\n* ntp::service: Handles the service.\n\n###Parameters\n\nThe following parameters are available in the `::ntp` class:\n\n####`broadcastclient`\n\nEnable reception of broadcast server messages to any local interface.\n\n####`config`\n\nSpecifies a file for ntp's configuration info. Valid options: string containing an absolute path. Default value: '/etc/ntp.conf' (or '/etc/inet/ntp.conf' on Solaris)\n\n\n####`config_dir`\n\nSpecifies a directory for the ntp configuration files. Valid options: string containing an absolute path. Default value: undef\n\n####`config_file_mode`\n\nSpecifies a file mode for the ntp configuration file. Valid options: string containing file mode. Default value: '0664'\n\n####`config_template`\n\nSpecifies a file to act as a ERB template for the config file. Valid options: string containing a path (absolute, or relative to the module path). Example value: 'ntp/ntp.conf.erb'. Validation error will be thrown if this param is supplied as well as the `config_epp` param.\n\n####`config_epp`\n\nSpecifies a file to act as a EPP template for the config file. Valid options: string containing a path (absolute, or relative to the module path). Example value: 'ntp/ntp.conf.epp'. Validation error will be thrown if this param is supplied as well as the `config_template` param.\n\n####`disable_auth`\n\nDo  not  require cryptographic authentication for broadcast client, multicast\nclient and symmetric passive associations.\n\n####`disable_auth`\n\nDisables kernel time discipline.\n\n####`disable_dhclient`\n\nDisables `ntp-servers` in `dhclient.conf` to avoid Dhclient from managing the NTP configuration.\n\n####`disable_monitor`\n\nDisables the monitoring facility in NTP. Valid options: true or false. Default value: true\n\n####`driftfile`\n\nSpecifies an NTP driftfile. Valid options: string containing an absolute path. Default value: '/var/lib/ntp/drift' (except on AIX and Solaris)\n\n#### `fudge`\n\nUsed to provide additional information for individual clock drivers. Valid options: array containing strings that follow the `fudge` command. Default value: [ ]\n\n####`iburst_enable`\n\nSpecifies whether to enable the iburst option for every NTP peer. Valid options: true or false. Default value: false (except on AIX and Debian)\n\n####`interfaces`\n\nSpecifies one or more network interfaces for NTP to listen on. Valid options: array. Default value: [ ]\n\n####`interfaces_ignore`\n\nSpecifies one or more ignore pattern for the NTP listener configuration (e.g. all, wildcard, ipv6, ...). Valid options: array. Default value: [ ]\n\n#### `keys`\n\nDistributes keys to keys file. Valid options: array of keys. Default value: [ ]\n\n####`keys_controlkey`\n\nSpecifies the key identifier to use with the ntpq utility. Valid options: value in the range of 1 to 65,534 inclusive. Default value: ' '\n\n####`keys_enable`\n\nTells Puppet whether to enable key-based authentication. Valid options: true or false. Default value: false\n\n####`keys_file`\n\nSpecifies the complete path and location of the MD5 key file containing the keys and key identifiers used by ntpd, ntpq and ntpdc when operating with symmetric key cryptography. Valid options: string containing an absolute path. Default value: `/etc/ntp.keys` (except on RedHat and Amazon, where it is `/etc/ntp/keys`).\n\n####`keys_requestkey`\n\nSpecifies the key identifier to use with the ntpdc utility program. Valid options: value in the range of 1 to 65,534 inclusive. Default value: ' '\n\n#### `keys_trusted`:\nProvides one or more keys to be trusted by NTP. Valid options: array of keys. Default value: [ ]\n\n#### `leapfile`\n\nSpecifies a leap second file for NTP to use. Valid options: string containing an absolute path. Default value: ' '\n\n#### `logfile`\n\nSpecifies a log file for NTP to use instead of syslog. Valid options: string containing an absolute path. Default value: ' '\n\n####`minpoll`\n\nTells Puppet to use non-standard minimal poll interval of upstream servers. Valid options: 3 to 16. Default option: undef.\n\n####`maxpoll`\n\nTells Puppet to use non-standard maximal poll interval of upstream servers. Valid options: 3 to 16. Default option: undef, except FreeBSD (on FreeBSD `maxpoll` set 9 by default).\n\n####`ntpsigndsocket`\n\nTells NTP to sign packets using the socket in the ntpsigndsocket path. NTP must be configured to sign sockets for this to work.\nValid option: a path to the socket directory; for example, for Samba it would be:\n\n~~~~\nntpsigndsocket = usr/local/samba/var/lib/ntp_signd/\n~~~~\n\nDefault value: undef.\n\n####`package_ensure`\n\nTells Puppet whether the NTP package should be installed, and what version. Valid options: 'present', 'latest', or a specific version number. Default value: 'present'\n\n####`package_manage`\n\nTells Puppet whether to manage the NTP package. Valid options: true or false. Default value: true\n\n####`package_name`\n\nTells Puppet what NTP package to manage. Valid options: Array[string]. Default value: ['ntp'] (except on AIX and Solaris)\n\n####`panic`\n\nSpecifies whether NTP should \"panic\" in the event of a very large clock skew. Applies only if `tinker` option set to \"true\" or in case your environment is in virtual machine. Valid options: unsigned shortint digit. Default value: 0 if environment is virtual, undef in all other cases.\n\n####`peers`\n\nList of ntp servers which the local clock can be synchronised against, or which can synchronise against the local clock.\n\n####`preferred_servers`\n\nSpecifies one or more preferred peers. Puppet will append 'prefer' to each matching item in the `servers` array. Valid options: array. Default value: [ ]\n\n####`restrict`\n\nSpecifies one or more `restrict` options for the NTP configuration. Puppet will prefix each item with 'restrict', so you only need to list the content of the restriction. Valid options: array. Default value for most operating systems:\n\n~~~~\n[\n  'default kod nomodify notrap nopeer noquery',\n  '-6 default kod nomodify notrap nopeer noquery',\n  '127.0.0.1',\n  '-6 ::1',\n]\n~~~~\n\nDefault value for AIX systems:\n\n~~~~\n[\n  'default nomodify notrap nopeer noquery',\n  '127.0.0.1',\n]\n~~~~\n\n####`servers`\n\nSpecifies one or more servers to be used as NTP peers. Valid options: array. Default value: varies by operating system\n\n####`service_enable`\n\nTells Puppet whether to enable the NTP service at boot. Valid options: true or false. Default value: true\n\n####`service_ensure`\n\nTells Puppet whether the NTP service should be running. Valid options: 'running' or 'stopped'. Default value: 'running'\n\n####`service_manage`\n\nTells Puppet whether to manage the NTP service. Valid options: true or false. Default value: true\n\n####`service_name`\n\nTells Puppet what NTP service to manage. Valid options: string. Default value: varies by operating system\n\n####`service_provider`\n\nTells Puppet which service provider to use for NTP. Valid options: string. Default value: 'undef'\n\n####`step_tickers_file`\n\nLocation of the step tickers file on the managed system. Default value: varies by operating system\n\n####`step_tickers_template`\n\nLocation of the step tickers ERB template file. Default value: varies by operating system. Validation error will be thrown if this is specified as well as the `step_tickers_epp` param.\n\n####`step_tickers_epp`\n\nLocation of the step tickers EPP template file. Default value: varies by operating system. Validation error will be thrown if this is specified as well as the `step_tickers_template` param.\n\n####`stepout`\n\nTells puppet to change stepout. Applies only if `tinker` value is true. Valid options: unsigned shortint digit. Default value: undef.\n\n####`tos`\n\nTells Puppet to enable tos options. Valid options: true of false. Default value: false\n\n####`tos_minclock`\n\nSpecifies the minclock tos option. Valid options: numeric. Default value: 3\n\n####`tos_minsane`\n\nSpecifies the minsane tos option. Valid options: numeric. Default value: 1\n\n####`tos_floor`\n\nSpecifies the floor tos option. Valid options: numeric. Default value: 1\n\n####`tos_ceiling`\n\nSpecifies the ceiling tos option. Valid options: numeric. Default value: 15\n\n####`tos_cohort`\n\nSpecifies the cohort tos option. Valid options: '0' or '1'. Default value: 0\n\n####`tinker`\n\nTells Puppet to enable tinker options. Valid options: true of false. Default value: false\n\n####`udlc`\n\nSpecifies whether to configure ntp to use the undisciplined local clock as a time source. Valid options: true or false. Default value: false\n\n####`udlc_stratum`\n\nSpecifies the stratum the server should operate at when using the undisciplined local clock as the time source. It is strongly suggested that this value be set to no less than 10 where ntpd may be accessible outside your immediate, controlled network. Default value: 10\n\n##Limitations\n\nThis module has been tested on [all PE-supported platforms](https://forge.puppetlabs.com/supported#compat-matrix), and no issues have been identified. Additionally, it is tested (but not supported) on Solaris 10 and Fedora 20-22.\n\n##Development\n\nPuppet Labs modules on the Puppet Forge are open projects, and community contributions are essential for keeping them great. We can’t access the huge number of platforms and myriad of hardware, software, and deployment configurations that Puppet is intended to serve.\n\nWe want to keep it as easy as possible to contribute changes so that our modules work in your environment. There are a few guidelines that we need contributors to follow so that we can have a chance of keeping on top of things.\n\nFor more information, see our [module contribution guide.](https://docs.puppetlabs.com/forge/contributing.html)\n\n###Contributors\n\nTo see who's already involved, see the [list of contributors.](https://github.com/puppetlabs/puppetlabs-ntp/graphs/contributors)\n",
g10k-0.5.7/tests/fake-forge/invalid-sha256sum-puppetlabs-ntp-metadata.json:149:  "changelog": "## Supported Releases 5.0.0 and 6.0.0\n### Summary\n\nThis double release adds new Puppet 4 features: data in modules, EPP templates, the $facts hash, and data types. The 5.0.0 release is fully backwards compatible to existing Puppet 4 configurations and provides you with [deprecation warnings](https://github.com/puppetlabs/puppetlabs-stdlib#deprecation) for every argument that will not work as expected with the final 6.0.0 release. See the [stdlib docs](https://github.com/puppetlabs/puppetlabs-stdlib#validate_legacy) for an in-depth discussion of this.\n\nIf you want to learn more about the new features used, have a look at the [NTP: A Puppet 4 language update](https://puppet.com/blog/ntp-puppet-4-language-update) blog post.\n\nIf you're still running Puppet 3, remain on the latest puppetlabs-ntp 4.x release for now, and see the documentation to [upgrade to Puppet 4](https://docs.puppet.com/puppet/4.6/reference/upgrade_major_pre.html).\n\n### Changes\n\n* [Data in modules](https://docs.puppet.com/puppet/latest/reference/lookup_quick_module.html#example-with-hiera): Moves all distribution and OS-dependent defaults into YAML files in `data/`, alleviating the need for a `params` class. Note that while this feature is currently still classed as experimental, the final implementation will support the changes here.\n* [EPP templating](https://docs.puppet.com/puppet/latest/reference/lang_template_epp.html): Uses the Puppet language as a base for templates to create simpler and safer templates. No need for Ruby anymore! You can pass in EPP templates for the `ntp.conf` and `step-tickers` files using the new `config_epp` and `step_tickers_epp` parameters.\n* [The $facts hash](https://docs.puppet.com/puppet/latest/reference/lang_facts_and_builtin_vars.html#the-factsfactname-hash): Makes facts visibly distinct from other variables for more readable and maintainable code. This helps eliminate confusion if you use a local variable whose name happens to match that of a common fact.\n* [Data types for validation](https://docs.puppet.com/puppet/4.6/reference/lang_data.html): Helps you find and replace deprecated code in existing `validate_*` functions with stricter, more readable data type notation. First upgrade to the 5.0.0 release of this module, and address all deprecation warnings before upgrading to the final 6.0.0 release. Please see the [stdlib docs](https://github.com/puppetlabs/puppetlabs-stdlib#validate_legacy) for an in-depth discussion of this process.\n\n## Supported Release 4.2.0\n### Summary\n\nA large release with many new features. Multiple additions to parameters and work contributed to OS compatibility. Also includes several bug fixes, including clean ups of code.\n\n#### Features\n- Updated spec helper for more consistency\n- Addition of config_dir variable\n- Addition of puppet TOS options\n- Added support for disabling kernel time discipline in ntp.conf\n- Update Solaris support for newer Facter, and Amazon for < 1.7.0 facter\n- Added disable_dhclient parameter\n- Added OpenSUSE 13.2 compatibility\n- Parameterize file mode of config file\n- Enhanced the default configuration\n- Debian 8 compatibility\n- Enabled usage of the $ntpsigndsocket parameter\n- Added parameter for interfaces to ignore\n- Added support for the authprov parameter\n- Additional work done for SLES 12 compatibility\n- Addition of key template options/ key distribution\n\n#### Bugfixes\n- Fix for strict variables and tests\n- Fixed test with preferred server and iburst enabled\n- Added logfile parameter test\n- Cleaned out unused cleanup code and utilities from spec_helper\n- Deprecated ntp_dirname function\n- No longer manages the keys_file parent when it would be inappropriate to do so\n- Converted license string to SPDX format\n- Removed ruby 1.8.7 and puppet 2.7 from travis-ci jobs\n\n## Supported Release 4.1.2\n###Summary\n\nSmall release for support of newer PE versions. This increments the version of PE in the metadata.json file.\n\n## Supported Release 4.1.1\n### Summary\nThis is a bugfix release to address security vulnerability CVE-2013-5211.\n\n#### Bugfixes\n- Changes the default behavior to disable monitoring as part of the solution for CVE-2013-5211.\n\n## 2015-07-21 - Supported Release 4.1.0\n### Summary\nThis release updates metadata to support new version of puppet enterprise, as well as new features, bugfixes, and test improvements.\n\n#### Features\n- Adds Solaris 10 support\n- Adds Fedora 20, 21, 22 compatibility\n\n#### Bugfixes\n- Fix default configuration for Debian (MODULES-2087)\n- Fix to ensure log file is created before service starts\n- Fixes SLES params for SLES 10, 11, 12\n\n## 2015-05-26 - Supported Release 4.0.0\n### Summary\nThis release drops puppet 2.7 support and older stdlib support. It also includes the addition of 12 new properties, as well as numerous bug fixes and other improvements.\n\n#### Backwards-incompatible changes\n- UDLC (Undisciplined local clock) is now no longer enabled by default on anything (previous was enabled on non-virtual).\n- Puppet 2.7 no longer supported\n- puppetlabs-stdlib less than 4.5.0 no longer supported\n\n#### Features\n- Readme, Metadata, and Contribution documentation improvements\n- Acceptance test improvements\n- Added the `broadcastclient` property\n- Added the `disable_auth` property\n- Added `broadcastclient` property\n- Added `disable_auth` property\n- Added `fudge` property\n- Added `peers` property\n- Added `udlc_stratum` property\n- Added `tinker` property\n- Added `minpoll` property\n- Added `maxpoll` property\n- Added `stepout` property\n- Added `leapfile` property\n\n#### Bugfixes\n- Removing equal sign as delimiter in ntp.conf for the logfile parameter.\n- Add package_manage parameter, which is set to false by default on FreeBSD\n- Fixed an issue with the `is_virtual` property\n- Fixed debian wheezy issue\n- Fix for Redhat to disable ntp restart due to dhcp ntp server updates\n\n##2014-11-04 - Supported Release 3.3.0\n###Summary\n\nThis release adds support for SLES 12.\n\n####Features\n- Added support for SLES 12\n\n##2014-10-02 - Supported Release 3.2.1\n###Summary\n\nThis is a bug-fix release addressing the security concerns of setting /etc/ntp to mode 0755 recursively.\n\n####Bugfixes\n- Do not recursively set ownership/mode of /etc/ntp\n\n##2014-09-10 - Supported Release 3.2.0\n###Summary\n\nThis is primarily a feature release. It adds a few new parameters to class `ntp`\nand adds support for Solaris 11.\n\n####Features\n- Add the `$interfaces` parameter to `ntp`\n- Add support for Solaris 10 and 11\n- Synchronized files with modulesync\n- Test updates\n- Add the `$iburst_enable` parameter to `ntp`\n\n####Bugfixes\n- Fixes for strict variables\n- Remove dependency on stdlib4\n\n##2014-06-06 - Release 3.1.2\n###Summary\n\nThis is a supported release.  This release fixes a manifest typo.\n\n##2014-06-06 - Release 3.1.1\n###Summary\n\nThis is a bugfix release to get around dependency issues in PMT 3.6.  This\nversion has a dependency on puppetlabs-stdlib >= 4 so PE3.2.x is no longer\nsupported.\n\n####Bugfixes\n- Remove deprecated Modulefile as it was causing duplicate dependencies with PMT.\n\n##2014-05-14 - Release 3.1.0\n###Summary\n\nThis release adds `disable_monitor` so you can disable the monitor functionality\nof NTP, which was recently used in NTP amplification attacks.  It also adds\nsupport for RHEL7 and Ubuntu 14.04.\n\n####Features\n- Add `disable_monitor`\n\n####Bugfixes\n\n#####Known Bugs\n* No known bugs\n\n##2014-04-09 - Supported Release 3.0.4\n###Summary\nThis is a supported release.\n\nThe only functional change in this release is to split up the restrict\ndefaults to be per operating system so that we can provide safer defaults\nfor AIX, to resolve cases where IPv6 are disabled.\n\n####Features\n- Rework restrict defaults.\n\n####Bugfixes\n- Fix up a comment.\n- Fix a test to work better on PE.\n\n#####Known Bugs\n* No known bugs\n\n##2014-03-04 - Supported Release 3.0.3\n###Summary\nThis is a supported release. Correct stdlib compatibility\n\n####Bugfixes\n- Remove `dirname()` call for correct stdlib compatibility.\n- Improved tests\n\n####Known Bugs\n* No known bugs\n\n\n## 2014-02-13 - Release 3.0.2\n###Summary\n\nNo functional changes: Update the README and allow custom gem sources.\n\n## 2013-12-17 - Release 3.0.1\n### Summary\n\nWork around a packaging bug with symlinks, no other functional changes.\n\n## 2013-12-13 - Release 3.0.0\n### Summary\n\nFinal release of 3.0, enjoy!\n\n\n## 2013-10-14 - Version 3.0.0-rc1\n\n###Summary\n\nThis release changes the behavior of restrict and adds AIX osfamily support.\n\n####Backwards-incompatible Changes:\n\n`restrict` no longer requires you to pass in parameters as:\n\nrestrict => [ 'restrict x', 'restrict y' ]\n\nbut just as:\n\nrestrict => [ 'x', 'y' ]\n\nAs the template now prefixes each line with restrict.\n\n####Features\n- Change the behavior of `restrict` so you no longer need the restrict\nkeyword.\n- Add `udlc` parameter to enable undisciplined local clock regardless of the\nmachines status as a virtual machine.\n- Add AIX support.\n\n####Fixes\n- Use class{} instead of including and then anchoring. (style)\n- Extend Gentoo coverage to Facter 1.7.\n\n---\n##2013-09-05 - Version 2.0.1\n\n###Summary\n\nCorrect the LICENSE file.\n\n####Bugfixes\n- Add in the appropriate year and name in LICENSE.\n\n\n##2013-07-31 - Version 2.0.0\n\n###Summary\n\nThe 2.0 release focuses on merging all the distro specific\ntemplates into a single reusable template across all platforms.\n\nTo aid in that goal we now allow you to change the driftfile,\nntp keys, and perferred_servers.\n\n####Backwards-incompatible changes\n\nAs all the distro specific templates have been removed and a\nunified one created you may be missing functionality you\npreviously relied on.  Please test carefully before rolling\nout globally.\n\nConfiguration directives that might possibly be affected:\n- `filegen`\n- `fudge` (for virtual machines)\n- `keys`\n- `logfile`\n- `restrict`\n- `restrictkey`\n- `statistics`\n- `trustedkey`\n\n####Features:\n- All templates merged into a single template.\n- NTP Keys support added.\n- Add preferred servers support.\n- Parameters in `ntp` class:\n  - `driftfile`: path for the ntp driftfile.\n  - `keys_enable`: Enable NTP keys feature.\n  - `keys_file`: Path for the NTP keys file.\n  - `keys_trusted`: Which keys to trust.\n  - `keys_controlkey`: Which key to use for the control key.\n  - `keys_requestkey`: Which key to use for the request key.\n  - `preferred_servers`: Array of servers to prefer.\n  - `restrict`: Array of restriction options to apply.\n\n---\n###2013-07-15 - Version 1.0.1\n####Bugfixes\n- Fix deprecated warning in `autoupdate` parameter.\n- Correctly quote is_virtual fact.\n\n\n##2013-07-08 - Version 1.0.0\n####Features\n- Completely refactored to split across several classes.\n- rspec-puppet tests rewritten to cover more options.\n- rspec-system tests added.\n- ArchLinux handled via osfamily instead of special casing.\n- parameters in `ntp` class:\n  - `autoupdate`: deprecated in favor of directly setting package_ensure.\n  - `panic`: set to false if you wish to allow large clock skews.\n\n---\n##2011-11-10 Dan Bode <dan@puppetlabs.com> - 0.0.4\n* Add Amazon Linux as a supported platform\n* Add unit tests\n\n\n##2011-06-16 Jeff McCune <jeff@puppetlabs.com> - 0.0.3\n* Initial release under puppetlabs\n",
g10k-0.5.7/tests/fake-forge/invalid-sha256sum-puppetlabs-ntp-metadata.json-150-  "license": "\n                                 Apache License\n                           Version 2.0, January 2004\n                        http://www.apache.org/licenses/\n\n   TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION\n\n   1. Definitions.\n\n      \"License\" shall mean the terms and conditions for use, reproduction,\n      and distribution as defined by Sections 1 through 9 of this document.\n\n      \"Licensor\" shall mean the copyright owner or entity authorized by\n      the copyright owner that is granting the License.\n\n      \"Legal Entity\" shall mean the union of the acting entity and all\n      other entities that control, are controlled by, or are under common\n      control with that entity. For the purposes of this definition,\n      \"control\" means (i) the power, direct or indirect, to cause the\n      direction or management of such entity, whether by contract or\n      otherwise, or (ii) ownership of fifty percent (50%) or more of the\n      outstanding shares, or (iii) beneficial ownership of such entity.\n\n      \"You\" (or \"Your\") shall mean an individual or Legal Entity\n      exercising permissions granted by this License.\n\n      \"Source\" form shall mean the preferred form for making modifications,\n      including but not limited to software source code, documentation\n      source, and configuration files.\n\n      \"Object\" form shall mean any form resulting from mechanical\n      transformation or translation of a Source form, including but\n      not limited to compiled object code, generated documentation,\n      and conversions to other media types.\n\n      \"Work\" shall mean the work of authorship, whether in Source or\n      Object form, made available under the License, as indicated by a\n      copyright notice that is included in or attached to the work\n      (an example is provided in the Appendix below).\n\n      \"Derivative Works\" shall mean any work, whether in Source or Object\n      form, that is based on (or derived from) the Work and for which the\n      editorial revisions, annotations, elaborations, or other modifications\n      represent, as a whole, an original work of authorship. For the purposes\n      of this License, Derivative Works shall not include works that remain\n      separable from, or merely link (or bind by name) to the interfaces of,\n      the Work and Derivative Works thereof.\n\n      \"Contribution\" shall mean any work of authorship, including\n      the original version of the Work and any modifications or additions\n      to that Work or Derivative Works thereof, that is intentionally\n      submitted to Licensor for inclusion in the Work by the copyright owner\n      or by an individual or Legal Entity authorized to submit on behalf of\n      the copyright owner. For the purposes of this definition, \"submitted\"\n      means any form of electronic, verbal, or written communication sent\n      to the Licensor or its representatives, including but not limited to\n      communication on electronic mailing lists, source code control systems,\n      and issue tracking systems that are managed by, or on behalf of, the\n      Licensor for the purpose of discussing and improving the Work, but\n      excluding communication that is conspicuously marked or otherwise\n      designated in writing by the copyright owner as \"Not a Contribution.\"\n\n      \"Contributor\" shall mean Licensor and any individual or Legal Entity\n      on behalf of whom a Contribution has been received by Licensor and\n      subsequently incorporated within the Work.\n\n   2. Grant of Copyright License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      copyright license to reproduce, prepare Derivative Works of,\n      publicly display, publicly perform, sublicense, and distribute the\n      Work and such Derivative Works in Source or Object form.\n\n   3. Grant of Patent License. Subject to the terms and conditions of\n      this License, each Contributor hereby grants to You a perpetual,\n      worldwide, non-exclusive, no-charge, royalty-free, irrevocable\n      (except as stated in this section) patent license to make, have made,\n      use, offer to sell, sell, import, and otherwise transfer the Work,\n      where such license applies only to those patent claims licensable\n      by such Contributor that are necessarily infringed by their\n      Contribution(s) alone or by combination of their Contribution(s)\n      with the Work to which such Contribution(s) was submitted. If You\n      institute patent litigation against any entity (including a\n      cross-claim or counterclaim in a lawsuit) alleging that the Work\n      or a Contribution incorporated within the Work constitutes direct\n      or contributory patent infringement, then any patent licenses\n      granted to You under this License for that Work shall terminate\n      as of the date such litigation is filed.\n\n   4. Redistribution. You may reproduce and distribute copies of the\n      Work or Derivative Works thereof in any medium, with or without\n      modifications, and in Source or Object form, provided that You\n      meet the following conditions:\n\n      (a) You must give any other recipients of the Work or\n          Derivative Works a copy of this License; and\n\n      (b) You must cause any modified files to carry prominent notices\n          stating that You changed the files; and\n\n      (c) You must retain, in the Source form of any Derivative Works\n          that You distribute, all copyright, patent, trademark, and\n          attribution notices from the Source form of the Work,\n          excluding those notices that do not pertain to any part of\n          the Derivative Works; and\n\n      (d) If the Work includes a \"NOTICE\" text file as part of its\n          distribution, then any Derivative Works that You distribute must\n          include a readable copy of the attribution notices contained\n          within such NOTICE file, excluding those notices that do not\n          pertain to any part of the Derivative Works, in at least one\n          of the following places: within a NOTICE text file distributed\n          as part of the Derivative Works; within the Source form or\n          documentation, if provided along with the Derivative Works; or,\n          within a display generated by the Derivative Works, if and\n          wherever such third-party notices normally appear. The contents\n          of the NOTICE file are for informational purposes only and\n          do not modify the License. You may add Your own attribution\n          notices within Derivative Works that You distribute, alongside\n          or as an addendum to the NOTICE text from the Work, provided\n          that such additional attribution notices cannot be construed\n          as modifying the License.\n\n      You may add Your own copyright statement to Your modifications and\n      may provide additional or different license terms and conditions\n      for use, reproduction, or distribution of Your modifications, or\n      for any such Derivative Works as a whole, provided Your use,\n      reproduction, and distribution of the Work otherwise complies with\n      the conditions stated in this License.\n\n   5. Submission of Contributions. Unless You explicitly state otherwise,\n      any Contribution intentionally submitted for inclusion in the Work\n      by You to the Licensor shall be under the terms and conditions of\n      this License, without any additional terms or conditions.\n      Notwithstanding the above, nothing herein shall supersede or modify\n      the terms of any separate license agreement you may have executed\n      with Licensor regarding such Contributions.\n\n   6. Trademarks. This License does not grant permission to use the trade\n      names, trademarks, service marks, or product names of the Licensor,\n      except as required for reasonable and customary use in describing the\n      origin of the Work and reproducing the content of the NOTICE file.\n\n   7. Disclaimer of Warranty. Unless required by applicable law or\n      agreed to in writing, Licensor provides the Work (and each\n      Contributor provides its Contributions) on an \"AS IS\" BASIS,\n      WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or\n      implied, including, without limitation, any warranties or conditions\n      of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A\n      PARTICULAR PURPOSE. You are solely responsible for determining the\n      appropriateness of using or redistributing the Work and assume any\n      risks associated with Your exercise of permissions under this License.\n\n   8. Limitation of Liability. In no event and under no legal theory,\n      whether in tort (including negligence), contract, or otherwise,\n      unless required by applicable law (such as deliberate and grossly\n      negligent acts) or agreed to in writing, shall any Contributor be\n      liable to You for damages, including any direct, indirect, special,\n      incidental, or consequential damages of any character arising as a\n      result of this License or out of the use or inability to use the\n      Work (including but not limited to damages for loss of goodwill,\n      work stoppage, computer failure or malfunction, or any and all\n      other commercial damages or losses), even if such Contributor\n      has been advised of the possibility of such damages.\n\n   9. Accepting Warranty or Additional Liability. While redistributing\n      the Work or Derivative Works thereof, You may choose to offer,\n      and charge a fee for, acceptance of support, warranty, indemnity,\n      or other liability obligations and/or rights consistent with this\n      License. However, in accepting such obligations, You may act only\n      on Your own behalf and on Your sole responsibility, not on behalf\n      of any other Contributor, and only if You agree to indemnify,\n      defend, and hold each Contributor harmless for any liability\n      incurred by, or claims asserted against, such Contributor by reason\n      of your accepting any such warranty or additional liability.\n\n   END OF TERMS AND CONDITIONS\n\n   APPENDIX: How to apply the Apache License to your work.\n\n      To apply the Apache License to your work, attach the following\n      boilerplate notice, with the fields enclosed by brackets \"[]\"\n      replaced with your own identifying information. (Don't include\n      the brackets!)  The text should be enclosed in the appropriate\n      comment syntax for the file format. We also recommend that a\n      file or class name and description of purpose be included on the\n      same \"printed page\" as the copyright notice for easier\n      identification within third-party archives.\n\n   Copyright [yyyy] [name of copyright owner]\n\n   Licensed under the Apache License, Version 2.0 (the \"License\");\n   you may not use this file except in compliance with the License.\n   You may obtain a copy of the License at\n\n       http://www.apache.org/licenses/LICENSE-2.0\n\n   Unless required by applicable law or agreed to in writing, software\n   distributed under the License is distributed on an \"AS IS\" BASIS,\n   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n   See the License for the specific language governing permissions and\n   limitations under the License.\n",