Method: Beaker::DSL::InstallUtils#install_dev_puppet_module_on
- Defined in:
- lib/beaker/dsl/install_utils.rb
#install_dev_puppet_module_on(host, opts) ⇒ Object Also known as: puppet_module_install_on
Install the desired module on all hosts using either the PMT or a
staging forge
1338 1339 1340 1341 1342 1343 1344 1345 1346 |
# File 'lib/beaker/dsl/install_utils.rb', line 1338 def install_dev_puppet_module_on( host, opts ) if [:forge_host] with_forge_stubbed_on( host ) do install_puppet_module_via_pmt_on( host, opts ) end else copy_module_to( host, opts ) end end |