comparison modules/vcs/manifests/init.pp @ 147:6cb6dc1f74d4 puppet-3.6

Switch to mercurial_keyring from Pip 1) it is more up to date than OBS's devel:tools build 2) it is basically the last package we *must* have OBS for
author IBBoard <dev@ibboard.co.uk>
date Sat, 25 Mar 2017 20:54:34 +0000
parents 58d98753e5f9
children d9fcabc75a1e
comparison
equal deleted inserted replaced
146:816e35f86a5d 147:6cb6dc1f74d4
1 class vcs { 1 class vcs {
2 @package { [ 2 @package { [
3 "mercurial", 3 "mercurial",
4 "mercurial_keyring",
5 "git" 4 "git"
6 ]: 5 ]:
7 ensure => installed 6 ensure => installed
7 }
8 @package { 'mercurial_keyring':
9 ensure => installed,
10 provider => 'pip',
8 } 11 }
9 } 12 }
10 13
11 class vcs::client inherits vcs { 14 class vcs::client inherits vcs {
12 realize(Package["mercurial"], 15 realize(Package["mercurial"],