diff --git a/Changelog.md b/Changelog.md index ce19a81..34fac73 100644 --- a/Changelog.md +++ b/Changelog.md @@ -1,5 +1,16 @@ # puppet-cognos changelog +## v0.1.3 ++ Fixed install path bug. + +## v.0.1.2 ++ Changed vagrant box to bento. ++ Installing puppet via vagrant shell due to puppetlabs-concat version dependency. ++ Fixed gateway uri parameter in cogconfig.xml ++ Fixed ulimit too low via new parameter. ++ Updated readme with nginx SSL info. ++ Added ldaps cert management via nsstools. + ## v.0.1.1 + Added support for IPA auth provider. + Updates to systemd unit file: diff --git a/README.md b/README.md index b2094aa..7c0bada 100644 --- a/README.md +++ b/README.md @@ -197,11 +197,11 @@ In addition, it currently does not support: This module includes a Vagrantfile for easy testing. Steps to get started: -1. Install vagrant. -1. Install virtualbox. -1. Clone this repo. -1. Stage the Cognos and DB2 binares. -1. Run `vagrant up` in a terminal window from the root of the repo. + 1. Install vagrant. + 1. Install virtualbox. + 1. Clone this repo. + 1. Stage the Cognos and DB2 binares. + 1. Run `vagrant up` in a terminal window from the root of the repo. ### Staging the binaries The Cognos installer file must reside in `./puppet-cognos/vagrant` and the db2 installer must be extracted. diff --git a/manifests/install/main.pp b/manifests/install/main.pp index a99d311..2ca5443 100644 --- a/manifests/install/main.pp +++ b/manifests/install/main.pp @@ -14,8 +14,6 @@ } # Input validation - # TODO: swap to validate_legacy() - #validate_legacy(Optional[String], 'validate_re', $db2::instance_user_password, ['^(?!vagrant$).*$']) validate_legacy( Optional[String], 'validate_re', @@ -62,8 +60,8 @@ # Install Cognos $cog_install_cmd = @("END_COG_INSTALL_CMD"/$) -export LAX_DEBUG=true -./${cognos::installer_source_dir}/${cognos::installer_filename} -f ${response_file_name} -i silent + export LAX_DEBUG=true + ${cognos::installer_source_dir}/${cognos::installer_filename} -f ${response_file_name} -i silent | END_COG_INSTALL_CMD $cog_unless_cmd = @("END_COG_UNLESS_CMD"/$) diff --git a/metadata.json b/metadata.json index e37ef81..861bcf6 100644 --- a/metadata.json +++ b/metadata.json @@ -1,6 +1,6 @@ { "name": "jpuskar-cognos", - "version": "0.1.2", + "version": "0.1.3", "author": "jpuskar", "summary": "Installs and configures Cognos.", "license": "Apache-2.0",