Skip to content

Commit 04517e1

Browse files
committed
Made log output disabled by default.
1 parent 8afc5da commit 04517e1

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,9 @@
1111
* [Module Installation](#module-installation)
1212
4. [Usage](#usage)
1313
5. [Further Reference](#further-reference)
14-
5. [Limitations](#limitations)
15-
6. [Contributing to this module](#contributing-to-this-module)
14+
6. [Limitations](#limitations)
15+
7. [Troubleshooting](#troubleshooting)
16+
8. [Contributing to this module](#contributing-to-this-module)
1617

1718
## Overview
1819
The zendserver module allows you to easily manage Zend Server with Puppet.
@@ -147,6 +148,14 @@ The module is still under testing - please try it on a non-production system fir
147148
* The module does not add /usr/local/zend/bin to the search path - you might want to do it yourself.
148149
* 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.
149150

151+
## Troubleshooting
152+
Log output is disabled by default. You may enable it back for debugging purposes:
153+
```
154+
- logoutput => false,
155+
+ logoutput => true,
156+
```
157+
in `manifests/sdk/command.pp`
158+
150159
## Contributing to this module
151160
If you wish to help our efforts you can open issues in the github repository or contribute code.
152161
To contribute, please fork the repository and send us a pull-request with your changes using github.

manifests/sdk/command.pp

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
tries => $tries,
5151
try_sleep => $try_sleep,
5252
command => "${zs_client} ${api_command} --target=${target} ${additional_options} ",
53-
logoutput => true,
53+
logoutput => false,
5454
require => File['/usr/local/zend/bin/zs-client.phar'],
5555
onlyif => $onlyif,
5656
}

0 commit comments

Comments
 (0)