view modules/vcs/manifests/init.pp @ 81:c858ca1e01d0 puppet-3.6

Move to CentOS7-based dovecot (with a tweak for "in=…") because it seems to match output better
author IBBoard <dev@ibboard.co.uk>
date Sun, 01 Nov 2015 21:18:07 +0000
parents 956e484adc12
children 0dd899a10ee1
line wrap: on
line source

class vcs {
    @package { [
            "mercurial",
            "mercurial_keyring",
            "git"
        ]:
        ensure => latest
    }
}

class vcs::client inherits vcs {
	realize(Package["mercurial"],
		Package["mercurial_keyring"],
		Package["git"])
	package { "hgview":
		ensure => latest;
	}
}

class vcs::server inherits vcs {
	realize(Package["mercurial"],
		Package["git"])
}