From fa8584059a79d46fc9fc21b36726f789ace60162 Mon Sep 17 00:00:00 2001 From: Alexander Klimov Date: Fri, 12 Sep 2014 10:55:12 +0200 Subject: [PATCH] Add module/class `git' refs #6842 --- .vagrant-puppet/modules/git/manifests/init.pp | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 .vagrant-puppet/modules/git/manifests/init.pp diff --git a/.vagrant-puppet/modules/git/manifests/init.pp b/.vagrant-puppet/modules/git/manifests/init.pp new file mode 100644 index 000000000..08cb8635c --- /dev/null +++ b/.vagrant-puppet/modules/git/manifests/init.pp @@ -0,0 +1,13 @@ +# Class: git +# +# This class installs git. +# +# Sample Usage: +# +# include git +# +class git { + package { 'git': + ensure => installed, + } +}