Left: | ||
Right: |
LEFT | RIGHT |
---|---|
1 # == Class: adblockplus | 1 # == Class: adblockplus |
2 # | 2 # |
3 # The adblockplus class and the associated adblockplus:: namespace are | 3 # The adblockplus class and the associated adblockplus:: namespace are |
4 # used to integrate Puppet modules with each other, in order to assemble | 4 # used to integrate Puppet modules with each other, in order to assemble |
5 # the setups used by the Adblock Plus project. | 5 # the setups used by the Adblock Plus project. |
6 # | 6 # |
7 # === Parameters: | 7 # === Parameters: |
8 # | 8 # |
9 # [*authority*] | 9 # [*authority*] |
10 # The authorative domain or zone associated with the current environment, | 10 # The authorative domain or zone associated with the current environment. |
11 # similar to the deprecated and soon to be removed $base::zone. | |
mathias
2016/12/06 10:52:55
This line can be removed now.
f.lopez
2016/12/06 11:34:42
Acknowledged.
| |
12 # | 11 # |
13 # [*hosts*] | 12 # [*hosts*] |
14 # A hash of adblockplus::host $name => $parameter items to set up in this | 13 # A hash of adblockplus::host $name => $parameter items to set up in this |
15 # context, i.e. via Hiera. | 14 # context, i.e. via Hiera. |
16 # | 15 # |
17 # [*users*] | 16 # [*users*] |
18 # A hash of adblockplus::user $name => $parameter items to set up in this | 17 # A hash of adblockplus::user $name => $parameter items to set up in this |
19 # context, i.e. via Hiera. | 18 # context, i.e. via Hiera. |
20 # | 19 # |
21 # === Examples: | 20 # === Examples: |
(...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
113 ensure => 'present', | 112 ensure => 'present', |
114 mode => 0644, | 113 mode => 0644, |
115 }) | 114 }) |
116 | 115 |
117 # See modules/adblockplus/manifests/host.pp | 116 # See modules/adblockplus/manifests/host.pp |
118 create_resources('adblockplus::host', $hosts) | 117 create_resources('adblockplus::host', $hosts) |
119 | 118 |
120 # See modules/adblockplus/manifests/user.pp | 119 # See modules/adblockplus/manifests/user.pp |
121 create_resources('adblockplus::user', $users) | 120 create_resources('adblockplus::user', $users) |
122 } | 121 } |
LEFT | RIGHT |