| OLD | NEW |
| 1 # This role is meant for development, testing and debugging purpose only | 1 # This role is meant for development, testing and debugging purpose only |
| 2 classes: | 2 classes: |
| 3 adblockplus::log::processor: | 3 adblockplus::log::processor: |
| 4 fluent: | 4 fluent: |
| 5 package: | 5 package: |
| 6 ensure: "2.3.1-0" | 6 ensure: "2.3.*" |
| 7 provider: "apt" | 7 provider: "apt" |
| 8 user: | 8 user: |
| 9 managehome: true | 9 managehome: true |
| 10 groups: | 10 groups: |
| 11 - "adm" | 11 - "adm" |
| 12 - "users" | 12 - "users" |
| 13 shell: "/bin/bash" | 13 shell: "/bin/bash" |
| 14 | 14 |
| 15 # modules/fluent/manifests/config.pp | 15 # modules/fluent/manifests/config.pp |
| 16 fluent::configs: | 16 fluent::configs: |
| (...skipping 24 matching lines...) Expand all Loading... |
| 41 ensure: "present" | 41 ensure: "present" |
| 42 name: "80-output" | 42 name: "80-output" |
| 43 | 43 |
| 44 # modules/fluent/manifests/gem.pp | 44 # modules/fluent/manifests/gem.pp |
| 45 fluent::gems: | 45 fluent::gems: |
| 46 fluent-plugin-secure-forward: | 46 fluent-plugin-secure-forward: |
| 47 ensure: "absent" | 47 ensure: "absent" |
| 48 fluent-plugin-grep: | 48 fluent-plugin-grep: |
| 49 ensure: "present" | 49 ensure: "present" |
| 50 | 50 |
| OLD | NEW |