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, + } +}