comparison modules/vcs/manifests/init.pp @ 131:0dd899a10ee1 puppet-3.6

Change all "latest" packages to "installed" Having Puppet update packages is dangerous and not correct sysadmin. We have a script for checking for updates. Let that run and let the sysadmin update when appropriate. This will prevent any potential issues from faulty service restarts in the middle of the night.
author IBBoard <dev@ibboard.co.uk>
date Wed, 26 Oct 2016 19:40:37 +0100
parents 956e484adc12
children 58d98753e5f9
comparison
equal deleted inserted replaced
130:eb32a4978a7c 131:0dd899a10ee1
2 @package { [ 2 @package { [
3 "mercurial", 3 "mercurial",
4 "mercurial_keyring", 4 "mercurial_keyring",
5 "git" 5 "git"
6 ]: 6 ]:
7 ensure => latest 7 ensure => installed
8 } 8 }
9 } 9 }
10 10
11 class vcs::client inherits vcs { 11 class vcs::client inherits vcs {
12 realize(Package["mercurial"], 12 realize(Package["mercurial"],
13 Package["mercurial_keyring"], 13 Package["mercurial_keyring"],
14 Package["git"]) 14 Package["git"])
15 package { "hgview": 15 package { "hgview":
16 ensure => latest; 16 ensure => installed;
17 } 17 }
18 } 18 }
19 19
20 class vcs::server inherits vcs { 20 class vcs::server inherits vcs {
21 realize(Package["mercurial"], 21 realize(Package["mercurial"],