| Index: modules/adblockplus/manifests/log/rotation.pp |
| diff --git a/modules/adblockplus/manifests/log/rotation.pp b/modules/adblockplus/manifests/log/rotation.pp |
| index cf1ec6e0f682160ff27aea03ba728f6942b98856..1f3b97fc2bf41a6b5ac2a4e5de0c4666f588828e 100644 |
| --- a/modules/adblockplus/manifests/log/rotation.pp |
| +++ b/modules/adblockplus/manifests/log/rotation.pp |
| @@ -20,9 +20,6 @@ |
| # A single command string or multiple commands in array form, to |
| # become exectued after every successful rotation. |
| # |
| -# [*upload*] |
| -# Whether to export the rotated *.1.gz to the $adblockplus::log::uplink. |
| -# |
| # === Examples: |
| # |
| # adblockplus::log::rotation {'nginx_error_log': |
| @@ -33,7 +30,6 @@ |
| # postrotate => [ |
| # '[ ! -f /var/run/nginx.pid ] || kill -USR1 `cat /var/run/nginx.pid`', |
| # ], |
| -# upload => true, |
| # } |
| # |
| define adblockplus::log::rotation ( |
| @@ -42,7 +38,6 @@ define adblockplus::log::rotation ( |
| $interval = 'daily', |
| $path = "/var/log/$name", |
| $postrotate = [], |
| - $upload = false, |
| ) { |
| include adblockplus::log |