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