Puppet Class: webmin::params

Inherited by:
webmin
Defined in:
manifests/params.pp

Overview



1
2
3
4
5
6
7
8
9
10
11
12
13
14
# File 'manifests/params.pp', line 1

class webmin::params {
  $webmin_port  = '10000'
  $repo         = 'webmin.com'
  $proxy        = 'absent'
  $csf          = false
  $ensure       = 'latest'
  $ssl          = '1'
  $ssl_pkg      = $osfamily ? {
    'RedHat' => 'perl-Net-SSLeay',
    'Debian' => 'libnet-ssleay-perl',
    'Ubuntu' => 'libnet-ssleay-perl',
  }
  $bind_ip      = 'UNSET'
}