Puppet Class: wls_install::ords::software
- Defined in:
- manifests/ords/software.pp
Summary
This defined type allows you to install ords software.Overview
wls_install::ords::software
See the file “LICENSE” for the full license governing this code.
31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 |
# File 'manifests/ords/software.pp', line 31
class wls_install::ords::software (
String[1] $file,
Stdlib::Absolutepath $ords_home,
String[1] $source,
String[1] $version,
Variant[Enum['on_failure'], Boolean] $logoutput = 'on_failure'
) {
easy_type::debug_evaluation() # Show local variable on extended debug
wls_install::ords::software_version { $version:
source => $source,
file => $file,
ords_home => $ords_home,
logoutput => $logoutput,
}
}
|