diff 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
line wrap: on
line diff
--- a/modules/vcs/manifests/init.pp	Thu Oct 06 19:02:30 2016 +0100
+++ b/modules/vcs/manifests/init.pp	Wed Oct 26 19:40:37 2016 +0100
@@ -4,7 +4,7 @@
             "mercurial_keyring",
             "git"
         ]:
-        ensure => latest
+        ensure => installed
     }
 }
 
@@ -13,7 +13,7 @@
 		Package["mercurial_keyring"],
 		Package["git"])
 	package { "hgview":
-		ensure => latest;
+		ensure => installed;
 	}
 }