Skip to content

Commit

Permalink
Made log output disabled by default.
Browse files Browse the repository at this point in the history
  • Loading branch information
ubellavance committed Jun 19, 2017
1 parent 8afc5da commit 04517e1
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 3 deletions.
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,9 @@
* [Module Installation](#module-installation)
4. [Usage](#usage)
5. [Further Reference](#further-reference)
5. [Limitations](#limitations)
6. [Contributing to this module](#contributing-to-this-module)
6. [Limitations](#limitations)
7. [Troubleshooting](#troubleshooting)
8. [Contributing to this module](#contributing-to-this-module)

## Overview
The zendserver module allows you to easily manage Zend Server with Puppet.
Expand Down Expand Up @@ -147,6 +148,14 @@ The module is still under testing - please try it on a non-production system fir
* The module does not add /usr/local/zend/bin to the search path - you might want to do it yourself.
* The module is not compatible with the puppetlabs/apache module. Do not use both modules to manage the same node (=server). puppetlabs/apache can be used to manage other nodes.

## Troubleshooting
Log output is disabled by default. You may enable it back for debugging purposes:
```
- logoutput => false,
+ logoutput => true,
```
in `manifests/sdk/command.pp`

## Contributing to this module
If you wish to help our efforts you can open issues in the github repository or contribute code.
To contribute, please fork the repository and send us a pull-request with your changes using github.
Expand Down
2 changes: 1 addition & 1 deletion manifests/sdk/command.pp
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
tries => $tries,
try_sleep => $try_sleep,
command => "${zs_client} ${api_command} --target=${target} ${additional_options} ",
logoutput => true,
logoutput => false,
require => File['/usr/local/zend/bin/zs-client.phar'],
onlyif => $onlyif,
}
Expand Down

0 comments on commit 04517e1

Please sign in to comment.