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