Puppet Class: wls_profile
- Inherited by:
-
wls_profile::node
wls_profile::weblogic
wls_profile::admin_server
wls_profile::basic_domain
wls_profile::node::copy_domain
wls_profile::weblogic::ssh_setup
wls_profile::weblogic::wls_opatch
wls_profile::admin_server::wls_jms
wls_profile::weblogic::fmw_software
wls_profile::weblogic::wls_software
wls_profile::weblogic::java_software
wls_profile::basic_domain::wls_domain
wls_profile::admin_server::pack_domain
wls_profile::admin_server::wls_cluster
wls_profile::admin_server::wls_servers
wls_profile::basic_domain::wls_startup
wls_profile::admin_server::wls_datasources
wls_profile::admin_server::wls_users_and_groups
- Defined in:
- manifests/init.pp
Overview
wls_profile
4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 |
# File 'manifests/init.pp', line 4
class wls_profile (
String[1] $adminserver_address,
Integer $adminserver_port,
String[1] $cluster_name,
#
# See the file "LICENSE" for the full license governing this code.
#
String[1] $domain_name,
Stdlib::Absolutepath
$domains_dir,
Stdlib::Absolutepath
$download_dir,
String[1] $java_full_version,
String[1] $java_version,
Stdlib::Absolutepath
$jdk_home,
Stdlib::Absolutepath
$log_dir,
Stdlib::Absolutepath
$middleware_home,
String[1] $nodemanager_address,
Integer $nodemanager_port,
Stdlib::Absolutepath
$oracle_base,
String[1] $os_group,
String[1] $os_user,
Hash $servers,
String[1] $source,
Stdlib::Absolutepath
$temp_dir,
Stdlib::Absolutepath
$weblogic_home,
Easy_type::Password
$weblogic_password,
String[1] $weblogic_user,
Wls_install::Versions
$weblogic_version,
Enum[
'standard',
'forms',
'ohs_standalone',
'adf_restricted',
'osb',
'osb_soa',
'osb_soa_bpm',
'soa',
'soa_bpm',
'bam',
'adf',
'oim',
'oud',
'wc',
'wc_wcc_bpm']
$install_type = 'standard'
) {
}
|