mirror of
https://github.com/voxpupuli/puppet-hashi_stack.git
synced 2025-05-24 02:45:01 +01:00
initial import
This commit is contained in:
parent
d9ceffd75b
commit
264d4ab24b
3 changed files with 78 additions and 0 deletions
4
manifests/repo.pp
Normal file
4
manifests/repo.pp
Normal file
|
@ -0,0 +1,4 @@
|
|||
#
|
||||
class hashi_stack::repo () {
|
||||
|
||||
}
|
65
metadata.json
Normal file
65
metadata.json
Normal file
|
@ -0,0 +1,65 @@
|
|||
{
|
||||
"name": "puppet-hashi_stack",
|
||||
"version": "1.0.0-rc0",
|
||||
"author": "Vox Pupuli",
|
||||
"summary": "This module contains shared code for various HashiCorp modules",
|
||||
"license": "Apache-2.0",
|
||||
"source": "https://github.com/voxpupuli/puppet-hashi_stack",
|
||||
"project_page": "https://github.com/voxpupuli/puppet-hashi_stack",
|
||||
"issues_url": "https://github.com/voxpupuli/puppet-hashi_stack/issues",
|
||||
"description": "This module contains shared code for various HashiCorp modules",
|
||||
"dependencies": [
|
||||
{
|
||||
"name": "puppetlabs-stdlib",
|
||||
"version_requirement": ">= 4.13.1 < 7.0.0"
|
||||
},
|
||||
{
|
||||
"name": "puppetlabs/apt",
|
||||
"version_requirement": ">= 2.0.0 < 8.0.0"
|
||||
},
|
||||
{
|
||||
"name": "puppet/yum",
|
||||
"version_requirement": ">= 0.9.6 < 5.0.0"
|
||||
},
|
||||
{
|
||||
"name": "puppetlabs/yumrepo_core",
|
||||
"version_requirement": ">= 1.0.0 < 2.0.0"
|
||||
}
|
||||
],
|
||||
"operatingsystem_support": [
|
||||
{
|
||||
"operatingsystem": "RedHat",
|
||||
"operatingsystemrelease": [
|
||||
"7",
|
||||
"8"
|
||||
]
|
||||
},
|
||||
{
|
||||
"operatingsystem": "CentOS",
|
||||
"operatingsystemrelease": [
|
||||
"7",
|
||||
"8"
|
||||
]
|
||||
},
|
||||
{
|
||||
"operatingsystem": "Debian",
|
||||
"operatingsystemrelease": [
|
||||
"9",
|
||||
"10"
|
||||
]
|
||||
},
|
||||
{
|
||||
"operatingsystem": "Ubuntu",
|
||||
"operatingsystemrelease": [
|
||||
"18.04",
|
||||
"20.04"
|
||||
]
|
||||
}
|
||||
],
|
||||
"requirements": [
|
||||
{
|
||||
"name": "puppet",
|
||||
"version_requirement": ">= 6.1.0 < 7.0.0"
|
||||
}
|
||||
]
|
||||
}
|
9
spec/classes/repo_spec.rb
Normal file
9
spec/classes/repo_spec.rb
Normal file
|
@ -0,0 +1,9 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe 'nomad' do
|
||||
on_supported_os.each do |os, os_facts|
|
||||
context "on #{os}" do
|
||||
let(:facts) { os_facts.merge(service_provider: 'systemd') }
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue