forked from witjoh/puppet-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
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 voxpupuli#672 from traylenator/puppet6
Drop EoL Puppet 6
- Loading branch information
Showing
58 changed files
with
459 additions
and
425 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 was deleted.
Oops, something went wrong.
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,23 +1,23 @@ | ||
# Managed by modulesync - DO NOT EDIT | ||
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/ | ||
|
||
pkg/ | ||
Gemfile.lock | ||
Gemfile.local | ||
vendor/ | ||
.vendor/ | ||
spec/fixtures/manifests/ | ||
spec/fixtures/modules/ | ||
.vagrant/ | ||
.bundle/ | ||
.ruby-version | ||
coverage/ | ||
log/ | ||
.idea/ | ||
.dependencies/ | ||
.librarian/ | ||
Puppetfile.lock | ||
/pkg/ | ||
/Gemfile.lock | ||
/Gemfile.local | ||
/vendor/ | ||
/.vendor/ | ||
/spec/fixtures/manifests/ | ||
/spec/fixtures/modules/ | ||
/.vagrant/ | ||
/.bundle/ | ||
/.ruby-version | ||
/coverage/ | ||
/log/ | ||
/.idea/ | ||
/.dependencies/ | ||
/.librarian/ | ||
/Puppetfile.lock | ||
*.iml | ||
.*.sw? | ||
.yardoc/ | ||
Guardfile | ||
/.yardoc/ | ||
/Guardfile |
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,37 +1,37 @@ | ||
# Managed by modulesync - DO NOT EDIT | ||
# https://voxpupuli.org/docs/updating-files-managed-with-modulesync/ | ||
|
||
docs/ | ||
pkg/ | ||
Gemfile | ||
Gemfile.lock | ||
Gemfile.local | ||
vendor/ | ||
.vendor/ | ||
spec/ | ||
Rakefile | ||
.vagrant/ | ||
.bundle/ | ||
.ruby-version | ||
coverage/ | ||
log/ | ||
.idea/ | ||
.dependencies/ | ||
.github/ | ||
.librarian/ | ||
Puppetfile.lock | ||
/docs/ | ||
/pkg/ | ||
/Gemfile | ||
/Gemfile.lock | ||
/Gemfile.local | ||
/vendor/ | ||
/.vendor/ | ||
/spec/ | ||
/Rakefile | ||
/.vagrant/ | ||
/.bundle/ | ||
/.ruby-version | ||
/coverage/ | ||
/log/ | ||
/.idea/ | ||
/.dependencies/ | ||
/.github/ | ||
/.librarian/ | ||
/Puppetfile.lock | ||
*.iml | ||
.editorconfig | ||
.fixtures.yml | ||
.gitignore | ||
.msync.yml | ||
.overcommit.yml | ||
.pmtignore | ||
.rspec | ||
.rspec_parallel | ||
.rubocop.yml | ||
.sync.yml | ||
/.editorconfig | ||
/.fixtures.yml | ||
/.gitignore | ||
/.msync.yml | ||
/.overcommit.yml | ||
/.pmtignore | ||
/.rspec | ||
/.rspec_parallel | ||
/.rubocop.yml | ||
/.sync.yml | ||
.*.sw? | ||
.yardoc/ | ||
.yardopts | ||
Dockerfile | ||
/.yardoc/ | ||
/.yardopts | ||
/Dockerfile |
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,3 @@ | ||
--fail-on-warnings | ||
--no-parameter_documentation-check | ||
--no-parameter_types-check |
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: true | ||
|
||
require 'json' | ||
require 'yaml' | ||
|
||
|
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,8 +1,10 @@ | ||
# frozen_string_literal: true | ||
|
||
Facter.add(:mongodb_version) do | ||
setcode do | ||
if Facter::Core::Execution.which('mongo') | ||
mongodb_version = Facter::Core::Execution.execute('mongo --version 2>&1') | ||
%r{MongoDB shell version:?\s+v?([\w\.]+)}.match(mongodb_version)[1] | ||
%r{MongoDB shell version:?\s+v?([\w.]+)}.match(mongodb_version)[1] | ||
end | ||
end | ||
end |
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
Oops, something went wrong.