Skip to content

Commit

Permalink
cmmi: require Class[gcc]
Browse files Browse the repository at this point in the history
refs #6842
  • Loading branch information
Al2Klimov committed Sep 11, 2014
1 parent 0a2fbf4 commit bb716e8
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .vagrant-puppet/modules/cmmi/manifests/init.pp
Expand Up @@ -17,7 +17,9 @@
#
# Requires:
#
# wget
# tar
# gcc
#
# Sample Usage:
#
Expand All @@ -44,6 +46,7 @@

include wget
include tar
include gcc

exec { "download-${name}":
cwd => $cwd,
Expand Down Expand Up @@ -78,7 +81,10 @@
cwd => $src,
command => $make,
creates => $creates,
require => Exec["configure-${name}"],
require => [
Exec["configure-${name}"],
Class['gcc']
],
timeout => $make_timeout
}
}

0 comments on commit bb716e8

Please sign in to comment.