-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #36 from nixwiz/add_bonsai_etc
Mega PR for Bonsai, etc.
- Loading branch information
Showing
13 changed files
with
163 additions
and
63 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
--- | ||
description: "#{repo}" | ||
builds: | ||
- platform: "alpine" | ||
arch: "amd64" | ||
asset_filename: "#{repo}_#{version}_alpine_linux_amd64.tar.gz" | ||
sha_filename: "#{repo}_#{version}_sha512-checksums.txt" | ||
filter: | ||
- "entity.system.os == 'linux'" | ||
- "entity.system.arch == 'amd64'" | ||
- "entity.system.platform == 'alpine'" | ||
- "entity.system.platform_version.split('.')[0] == '3'" | ||
- platform: "alpine3.8" | ||
arch: "amd64" | ||
asset_filename: "#{repo}_#{version}_alpine3.8_linux_amd64.tar.gz" | ||
sha_filename: "#{repo}_#{version}_sha512-checksums.txt" | ||
filter: | ||
- "entity.system.os == 'linux'" | ||
- "entity.system.arch == 'amd64'" | ||
- "entity.system.platform == 'alpine'" | ||
- platform: "centos" | ||
arch: "amd64" | ||
asset_filename: "#{repo}_#{version}_centos_linux_amd64.tar.gz" | ||
sha_filename: "#{repo}_#{version}_sha512-checksums.txt" | ||
filter: | ||
- "entity.system.os == 'linux'" | ||
- "entity.system.arch == 'amd64'" | ||
- "entity.system.platform_family == 'rhel'" | ||
- platform: "centos6" | ||
arch: "amd64" | ||
asset_filename: "#{repo}_#{version}_centos6_linux_amd64.tar.gz" | ||
sha_filename: "#{repo}_#{version}_sha512-checksums.txt" | ||
filter: | ||
- "entity.system.os == 'linux'" | ||
- "entity.system.arch == 'amd64'" | ||
- "entity.system.platform_family == 'rhel'" | ||
- "entity.system.platform_version.split('.')[0] == '6'" | ||
- platform: "centos7" | ||
arch: "amd64" | ||
asset_filename: "#{repo}_#{version}_centos7_linux_amd64.tar.gz" | ||
sha_filename: "#{repo}_#{version}_sha512-checksums.txt" | ||
filter: | ||
- "entity.system.os == 'linux'" | ||
- "entity.system.arch == 'amd64'" | ||
- "entity.system.platform_family == 'rhel'" | ||
- "entity.system.platform_version.split('.')[0] == '7'" | ||
- platform: "debian" | ||
arch: "amd64" | ||
asset_filename: "#{repo}_#{version}_debian_linux_amd64.tar.gz" | ||
sha_filename: "#{repo}_#{version}_sha512-checksums.txt" | ||
filter: | ||
- "entity.system.os == 'linux'" | ||
- "entity.system.arch == 'amd64'" | ||
- "entity.system.platform_family == 'debian'" | ||
- platform: "debian9" | ||
arch: "amd64" | ||
asset_filename: "#{repo}_#{version}_debian9_linux_amd64.tar.gz" | ||
sha_filename: "#{repo}_#{version}_sha512-checksums.txt" | ||
filter: | ||
- "entity.system.os == 'linux'" | ||
- "entity.system.arch == 'amd64'" | ||
|
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
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
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
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
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,3 +1,5 @@ | ||
# frozen_string_literal: false | ||
|
||
require 'sensu-plugins-puppet/version' | ||
|
||
module SensuPluginsPuppet | ||
|
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,3 +1,5 @@ | ||
# frozen_string_literal: true | ||
|
||
module SensuPluginsPuppet | ||
module Version | ||
MAJOR = 2 | ||
|
Oops, something went wrong.