I hereby claim:
- I am riton on github.
- I am riton (https://keybase.io/riton) on keybase.
- I have a public key ASBS4CJUVal4UQ1xVTD7ZiC8WzGZYkJIE2RteO_pUAlyxwo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
| $ metadata-json-dependencies-checker \ | |
| --module puppetlabs-stdlib \ | |
| --version 6.1.0 | |
| Module `postgresql' will be incompatible with version `6.1.0' of `puppetlabs-stdlib'. Requires version `4.x' | |
| Module `nginx' will be incompatible with version `6.1.0' of `puppetlabs-stdlib'. Requires version `>=4.2.0 <5.0.0' | |
| Module `apache' will be incompatible with version `6.1.0' of `puppetlabs-stdlib'. Requires version `>=2.4.0 <5.0.0' | |
| [...] |
| { | |
| "name": "puppetlabs-apache", | |
| "version": "5.2.0", | |
| [... EDITED ...], | |
| "dependencies": [ | |
| { | |
| "name": "puppetlabs/stdlib", | |
| "version_requirement": ">= 4.13.1 < 7.0.0" | |
| }, | |
| { |
| # Original code | |
| # from https://github.com/puppetlabs/puppetlabs-apache/blob/master/manifests/listen.pp | |
| define apache::listen { | |
| # [... EDITED ...] | |
| concat::fragment { "Listen ${listen_addr_port}": | |
| # [... EDITED ...] | |
| } | |
| } |
| include apache | |
| # Configure a virtual host to use SSL and specific SSL certificates | |
| apache::vhost { 'cert.example.com': | |
| port => '443', | |
| docroot => '/var/www/cert', | |
| ssl => true, | |
| ssl_cert => '/etc/ssl/fourth.example.com.cert', | |
| ssl_key => '/etc/ssl/fourth.example.com.key', | |
| } |
| # Install and configure Apache HTTP server with default values | |
| include apache |
| define servicedependency { | |
| hostgroup_name httpd_worker,httpd_proxy | |
| service_description check httpd proc | |
| dependent_host_name http-client | |
| dependent_service_description check get http app health,check get http app statistics | |
| execution_failure_criteria w,u,c | |
| notification_failure_criteria w,u,c | |
| } |
| #!/usr/bin/env ruby | |
| ENV['GEM_PATH'] = "/path/to/directory" | |
| require 'mygem' | |
| if __FILE__ == $0 | |
| end |
| class mymodule { | |
| mytype { "title": | |
| param1 => "FOO" | |
| } | |
| } |
| version: 5 | |
| defaults: | |
| data_hash: 'yaml_data' | |
| hierarchy: | |
| - name: "EYAML backend" | |
| lookup_key: 'eyaml_lookup_key' | |
| paths: | |
| - "default.yaml" |