Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code

Delta Between Two Patch Sets: modules/adblockplus/manifests/init.pp

Issue 29366882: Issue 3574 - Refactor Puppet class base into class adblockplus (Closed)
Left Patch Set: Created Dec. 6, 2016, 10:40 a.m.
Right Patch Set: For comment 6 Created Dec. 6, 2016, 11:42 a.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
Left: Side by side diff | Download
Right: Side by side diff | Download
« no previous file with change/comment | « hiera/puppet_node_classifier.rb ('k') | modules/base/manifests/init.pp » ('j') | no next file with change/comment »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
LEFTRIGHT
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
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 }
LEFTRIGHT

Powered by Google App Engine
This is Rietveld