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

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

Issue 29483578: #2007 - Introduce nodejs module (Closed)
Left Patch Set: For comment 6, ensure_resources prefered in order to avoid using the present parameter for a simple… Created July 11, 2017, 10:04 p.m.
Right Patch Set: For comment 8 Created July 12, 2017, 3:37 p.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 | « no previous file | modules/nodejs/manifests/package.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: nodejs 1 # == Class: nodejs
2 # 2 #
3 # Install nodejs package from source 3 # Install nodejs package from NodeSource
mathias 2017/07/11 22:28:03 This is not "from source", but "from NodeSource" o
4 # 4 #
5 # == Parameters: 5 # == Parameters:
6 # 6 #
7 # [*package*] 7 # [*package*]
8 # Overwrite the default package options, to fine-tune the target version (i.e. 8 # Overwrite the default package options, to fine-tune the target version (i.e.
9 # ensure => 'latest') or remove nodejs (ensure => 'absent' or 'purged') 9 # ensure => 'latest') or remove nodejs (ensure => 'absent' or 'purged')
10 # 10 #
11 # [*key*] 11 # [*key*]
12 # Overwrite the default apt::key used (given Class['apt'] is defined). 12 # Overwrite the default apt::key used (given Class['apt'] is defined).
13 # 13 #
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
65 }, $source)) 65 }, $source))
66 66
67 Apt::Source[$title] <- Apt::Key[$title] 67 Apt::Source[$title] <- Apt::Key[$title]
68 Apt::Source[$title] -> Package[$title] 68 Apt::Source[$title] -> Package[$title]
69 69
70 ensure_resources('nodejs::package', $packages, { 70 ensure_resources('nodejs::package', $packages, {
71 ensure => 'present', 71 ensure => 'present',
72 }) 72 })
73 } 73 }
74 74
LEFTRIGHT

Powered by Google App Engine
This is Rietveld