Puppet Class: nexus::params
- Inherited by:
 - 
      
      nexus
 
- Defined in:
 - manifests/params.pp
 
Overview
Class: nexus::params
module parameters.
Parameters
NONE
Examples
class nexus inherits nexus::params { }
Authors
Tom McLaughlin <tmclaughlin@hubspot.com>
Copyright
Copyright 2013 Hubspot
        22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44  | 
      
        # File 'manifests/params.pp', line 22
class nexus::params {
  # See nexus::package on why this won't increment the package version.
  $version                       = 'latest'
  $revision                      = '01'
  $type                          = 'bundle'
  $deploy_pro                    = false
  $download_site                 = 'http://download.sonatype.com/nexus/oss'
  $nexus_root                    = '/srv'
  $nexus_home_dir                = 'nexus'
  $nexus_work_recurse            = true
  $nexus_work_dir_manage         = true
  $nexus_selinux_ignore_defaults = true
  $nexus_user                    = 'nexus'
  $nexus_group                   = 'nexus'
  $nexus_host                    = '0.0.0.0'
  $nexus_port                    = '8081'
  $nexus_context                 = '/nexus'
  $nexus_manage_user             = true
  $pro_download_site             = 'http://download.sonatype.com/nexus/professional-bundle'
  $nexus_data_folder             = undef
  $download_folder               = '/srv'
  $manage_config                 = true
}
       |