-
Notifications
You must be signed in to change notification settings - Fork 259
Puppet v4 upgrade #362
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Puppet v4 upgrade #362
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| { | ||
| "name": "datadog-datadog_agent", | ||
| "version": "1.11.0", | ||
| "version": "1.12.0-alpha", | ||
| "author": "James Turnbull (<james@lovedthanlost.net>) and Rob Terhaar (<rob@atlanticdynamic>) for Datadog Inc.", | ||
| "summary": "Install the Datadog monitoring agent and report Puppet runs to Datadog", | ||
| "license": "Apache-2.0", | ||
|
|
@@ -11,46 +11,27 @@ | |
| "operatingsystem_support": [ | ||
| { | ||
| "operatingsystem": "RedHat", | ||
| "operatingsystemrelease": [ | ||
| "6", | ||
| "7" | ||
| ] | ||
| "operatingsystemrelease": ["6", "7"] | ||
| }, | ||
| { | ||
| "operatingsystem": "CentOS", | ||
| "operatingsystemrelease": [ | ||
| "6", | ||
| "7" | ||
| ] | ||
| "operatingsystemrelease": ["6", "7"] | ||
| }, | ||
| { | ||
| "operatingsystem": "Scientific", | ||
| "operatingsystemrelease": [ | ||
| "6", | ||
| "7" | ||
| ] | ||
| "operatingsystemrelease": ["6", "7"] | ||
| }, | ||
| { | ||
| "operatingsystem": "Fedora", | ||
| "operatingsystemrelease": [ | ||
| "19", | ||
| "20" | ||
| ] | ||
| "operatingsystemrelease": ["19", "20", "21", "22", "23", "24", "25", "26"] | ||
| }, | ||
| { | ||
| "operatingsystem": "Debian", | ||
| "operatingsystemrelease": [ | ||
| "6", | ||
| "7" | ||
| ] | ||
| "operatingsystemrelease": ["6", "7", "8", "9"] | ||
| }, | ||
| { | ||
| "operatingsystem": "Ubuntu", | ||
| "operatingsystemrelease": [ | ||
| "10.04", | ||
| "12.04", | ||
| "14.04" | ||
| ] | ||
| "operatingsystemrelease": ["10.04", "12.04", "14.04", "16.04", "17.04", "17.10"] | ||
| } | ||
| ], | ||
| "requirements": [ | ||
|
|
@@ -70,11 +51,15 @@ | |
| }, | ||
| { | ||
| "name": "puppetlabs/ruby", | ||
| "version_requirement": ">=0.2.0 <1.0.0" | ||
| "version_requirement": ">=0.2.0 <2.0.0" | ||
| }, | ||
| { | ||
| "name": "puppetlabs/concat", | ||
| "version_requirement": "2.2.0" | ||
| "version_requirement": ">=2.2.0 <5.0.0" | ||
| }, | ||
| { | ||
| "name": "tkishel/system_gem", | ||
|
Member
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This right here is my main concern. See: https://github.com/tkishel/system_gem/blob/master/metadata.json#L24-L28 It's not supported for a bunch of puppet versions we do support, so I guess that's a no-no for now. I understand it addresses an important issue on windows. |
||
| "version_requirement": ">=1.0.0 <2.0.0" | ||
| }, | ||
| { | ||
| "name": "lwf/remote_file", | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We've only officially supported LTS versions thus far - we should probably stay consistent with that (for now)