-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding automatic OS Detection, unsupported OS Failure, and APT Support.
- Loading branch information
Francis J.. Van Wetering IV
committed
Jul 13, 2015
1 parent
5627009
commit a559df9
Showing
2 changed files
with
43 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,24 +1,32 @@ | ||
{ | ||
"name": "frankiethekneeman-gitlab_ci_multi_runner", | ||
"version": "0.1.0", | ||
"author": "Francis J.. Van Wetering IV", | ||
"license": "MIT", | ||
"summary": "A Module to Install and register the Gitlab CI Multirunner.", | ||
"source": "https://github.com/frankiethekneeman/puppet-gitlab-ci-multi-runner", | ||
"project_page": "https://forge.puppetlabs.com/frankiethekneeman/gitlab-ci-multi-runner", | ||
"issues_url": "https://github.com/frankiethekneeman/puppet-gitlab-ci-multi-runner/issues", | ||
"tags": ["Gitlab", "CI", "MultiRunner", "Go"], | ||
"operatingsystem_support": [ | ||
{ | ||
"operatingsystem":"RedHat", | ||
"operatingsystemrelease":[ "5.0", "6.0" ] | ||
}, | ||
{ | ||
"operatingsystem":"CentOS", | ||
"operatingsystemrelease":[ "5.0", "6.0" ] | ||
} | ||
], | ||
"dependencies": [ | ||
{ "name": "puppetlabs/stdlib", "version_requirement": ">=3.2.0 <5.0.0" } | ||
] | ||
"name": "frankiethekneeman-gitlab_ci_multi_runner", | ||
"version": "0.1.1", | ||
"author": "Francis J.. Van Wetering IV", | ||
"license": "MIT", | ||
"summary": "A Module to Install and register the Gitlab CI Multirunner.", | ||
"source": "https://github.com/frankiethekneeman/puppet-gitlab-ci-multi-runner", | ||
"project_page": "https://forge.puppetlabs.com/frankiethekneeman/gitlab-ci-multi-runner", | ||
"issues_url": "https://github.com/frankiethekneeman/puppet-gitlab-ci-multi-runner/issues", | ||
"tags": ["Gitlab", "CI", "MultiRunner", "Go"], | ||
"operatingsystem_support": [ | ||
{ | ||
"operatingsystem":"RedHat", | ||
"operatingsystemrelease":[ "5.0", "6.0" ] | ||
} | ||
, { | ||
"operatingsystem":"CentOS", | ||
"operatingsystemrelease":[ "5.0", "6.0" ] | ||
} | ||
, { | ||
"operatingsystem":"Debian", | ||
"operatingsystemrelease":[ "7.0", "8.0" ] | ||
} | ||
, { | ||
"operatingsystem":"Ubuntu", | ||
"operatingsystemrelease":[ "14.04", "14.10", "15.04" ] | ||
} | ||
] | ||
, "dependencies": [ | ||
{ "name": "puppetlabs/stdlib", "version_requirement": ">=3.2.0 <5.0.0" } | ||
] | ||
} |