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

Side by Side Diff: modules/adblockplus/manifests/init.pp

Issue 29333430: Issue 3508 - Introduce class adblockplus::user (Closed)
Patch Set: Issue 3508 - Fix typo in adblockplus::user documentation Created Jan. 13, 2016, 5:23 p.m.
Left:
Right:
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | modules/adblockplus/manifests/user.pp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 class adblockplus { 7 # === Parameters:
8 #
9 # [*users*]
10 # A hash of adblockplus::user $name => $parameter items to set up in this
11 # context, i.e. via Hiera.
12 #
13 # === Examples:
14 #
15 # class {'adblockplus':
16 # users => {
17 # 'pinocchio' => {
18 # # see adblockplus::user
19 # },
20 # },
21 # }
22 #
23 class adblockplus (
24 $users = hiera('adblockplus::users', []),
25 ) {
8 26
9 # Used as internal constant within adblockplus::* resources 27 # Used as internal constant within adblockplus::* resources
10 $directory = '/var/adblockplus' 28 $directory = '/var/adblockplus'
11 29
12 # A common location for directories specific to the adblockplus:: setups, 30 # A common location for directories specific to the adblockplus:: setups,
13 # managed via Puppet, but accessible by all users with access to the system 31 # managed via Puppet, but accessible by all users with access to the system
14 @file {$directory: 32 @file {$directory:
15 ensure => 'directory', 33 ensure => 'directory',
16 mode => 0755, 34 mode => 0755,
17 owner => 'root', 35 owner => 'root',
18 } 36 }
37
38 # See modules/adblockplus/manifests/user.pp
39 create_resources('adblockplus::user', $users)
19 } 40 }
OLDNEW
« no previous file with comments | « no previous file | modules/adblockplus/manifests/user.pp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld