diff --git a/.vagrant-puppet/modules/cmmi/manifests/init.pp b/.vagrant-puppet/modules/cmmi/manifests/init.pp index 948076a01..128d00fc6 100644 --- a/.vagrant-puppet/modules/cmmi/manifests/init.pp +++ b/.vagrant-puppet/modules/cmmi/manifests/init.pp @@ -17,7 +17,9 @@ # # Requires: # +# wget # tar +# gcc # # Sample Usage: # @@ -44,6 +46,7 @@ define cmmi( include wget include tar + include gcc exec { "download-${name}": cwd => $cwd, @@ -78,7 +81,10 @@ define cmmi( cwd => $src, command => $make, creates => $creates, - require => Exec["configure-${name}"], + require => [ + Exec["configure-${name}"], + Class['gcc'] + ], timeout => $make_timeout } }