diff modules/vcs/manifests/init.pp @ 272:c42fb28cff86

Update to a newer Python module This also pulls in an EPEL module (which we don't use) and a newer stdlib version.
author IBBoard <dev@ibboard.co.uk>
date Fri, 03 Jan 2020 19:56:04 +0000
parents 2d119b462c83
children c16c977760c3
line wrap: on
line diff
--- a/modules/vcs/manifests/init.pp	Tue Dec 31 13:49:38 2019 +0000
+++ b/modules/vcs/manifests/init.pp	Fri Jan 03 19:56:04 2020 +0000
@@ -5,9 +5,8 @@
         ]:
         ensure => installed
     }
-    @package { 'mercurial-keyring':
+    python::pip { 'mercurial-keyring':
         ensure => installed,
-        provider => 'pip',
     }
     file { '/etc/bash_completion.d/git-prompt.sh':
         ensure => 'link',
@@ -17,7 +16,7 @@
 
 class vcs::client inherits vcs {
 	realize(Package["mercurial"],
-		Package["mercurial-keyring"],
+		Python::Pip["mercurial-keyring"],
 		Package["git"])
 }