-
Notifications
You must be signed in to change notification settings - Fork 11
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 #18 from fervidus/pr11_fixes
Pr11 fixes
- Loading branch information
Showing
11 changed files
with
201 additions
and
96 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,84 @@ | ||
# Changelog | ||
|
||
2020-08-26 Release 3.0.1 | ||
|
||
* Fix for PR 11 | ||
|
||
2020-16-05 Release 3.0.0 | ||
|
||
* Thanks to fraenki | ||
|
||
* Add support for Artifactory 7 | ||
|
||
2020-06-04 Release 2.2.8 | ||
|
||
Several fixes by Tim Meusel. | ||
|
||
* Litmus testing added | ||
* Add PostGres example | ||
|
||
2019-22-08 Release 2.2.7 | ||
|
||
Several fixes by Ron Aughenbaugh from University of Maryland. Go Terrapins. | ||
|
||
* Manage db.properties with augeas | ||
* Added optional params to db.properties with augeas | ||
* Fix hardcoding of paths | ||
|
||
2019-14-08 Release 2.2.5 | ||
|
||
* Alexander Hermes bumped java dependency | ||
* Frank Wall fixed bug where service restarted on .temp.db.properties change | ||
|
||
2019-20-05 Release 2.1.0 | ||
|
||
* Database secrets are now read from a temporary file, allowing for encrypted passwords | ||
* Master key for database can now be specified to re-use an existing database | ||
* Module can now provision a Mysql database and connect it to Artifactory | ||
* Smoothed out install script for better compatability with database | ||
|
||
2018-22-08 Release 2.0.16 | ||
|
||
* Refactored for PDK and ensured all test pass. | ||
|
||
2018-13-08 Release 2.0.14 | ||
|
||
* Refactored for PDK and ensured all test pass. | ||
|
||
2018-03--14 Release 2.0.13 | ||
|
||
* Remove OJDBC JAR file and ha-node prop files | ||
* Make artifactory version configurable | ||
|
||
2018-02-28 Release 2.0.12 | ||
|
||
* Added fix for manage_java = false dependency | ||
* Added enhancement for derby usage | ||
|
||
2017-03-21 Release 2.0.9 | ||
|
||
* Fix simple puppet linter problems | ||
|
||
2017-03-21 Release 2.0.8 | ||
|
||
* Change from wget to file type to grab binary drivers | ||
|
||
2016-08-14 Release 2.0.7 | ||
|
||
* Fix JDBC permissions | ||
|
||
2016-08-14 Release 2.0.5 | ||
|
||
* JDBC driver added as owner root, not artifactory | ||
|
||
2016-07-26 Release 2.0.0 | ||
|
||
* Remove db_hostname and db_port. Use db_url instead. | ||
|
||
2016-07-22 Release 1.0.5 | ||
|
||
* Added active management of java to module | ||
|
||
2016-07-22 Release 1.0.3 | ||
|
||
* Added shields and final travis-ci tests |
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 |
---|---|---|
@@ -0,0 +1 @@ | ||
--- {} |
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,21 @@ | ||
--- | ||
version: 5 | ||
|
||
defaults: # Used for any hierarchy level that omits these keys. | ||
datadir: data # This path is relative to hiera.yaml's directory. | ||
data_hash: yaml_data # Use the built-in YAML backend. | ||
|
||
hierarchy: | ||
- name: "osfamily/major release" | ||
paths: | ||
# Used to distinguish between Debian and Ubuntu | ||
- "os/%{facts.os.name}/%{facts.os.release.major}.yaml" | ||
- "os/%{facts.os.family}/%{facts.os.release.major}.yaml" | ||
# Used for Solaris | ||
- "os/%{facts.os.family}/%{facts.kernelrelease}.yaml" | ||
- name: "osfamily" | ||
paths: | ||
- "os/%{facts.os.name}.yaml" | ||
- "os/%{facts.os.family}.yaml" | ||
- name: 'common' | ||
path: 'common.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
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,6 +1,6 @@ | ||
# frozen_string_literal: true | ||
|
||
require 'puppet_litmus' | ||
require 'spec_helper_acceptance_local' if File.file?(File.join(File.dirname(__FILE__), 'spec_helper_acceptance_local.rb')) | ||
|
||
PuppetLitmus.configure! | ||
|
||
require 'spec_helper_acceptance_local' if File.file?(File.join(File.dirname(__FILE__), 'spec_helper_acceptance_local.rb')) |
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,11 +1,12 @@ | ||
require 'puppet_litmus' | ||
# frozen_string_literal: true | ||
|
||
require 'singleton' | ||
|
||
class Helper | ||
include Singleton | ||
include PuppetLitmus | ||
end | ||
|
||
# def some_helper_method | ||
# Helper.instance.bolt_run_script('path/to/file') | ||
# end | ||
def some_helper_method | ||
Helper.instance.bolt_run_script('path/to/file') | ||
end |
Oops, something went wrong.