Puppet Class: software::storage::filezilla
- Inherits:
- software::params
- Defined in:
- manifests/storage/filezilla.pp
Overview
6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
# File 'manifests/storage/filezilla.pp', line 6
class software::storage::filezilla (
$ensure = $software::params::software_ensure,
) inherits software::params {
$provider = $facts['os']['name'] ? {
'Darwin' => brewcask,
/(Debian|Ubuntu)/ => undef,
'windows' => chocolatey,
default => fail("The ${name} class is not supported on ${facts['os']['name']}."),
}
package { 'filezilla':
ensure => $ensure,
provider => $provider,
}
}
|