diff options
Diffstat (limited to 'pkg/saz-pureftpd-1.0.0/manifests/params.pp')
-rw-r--r-- | pkg/saz-pureftpd-1.0.0/manifests/params.pp | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/pkg/saz-pureftpd-1.0.0/manifests/params.pp b/pkg/saz-pureftpd-1.0.0/manifests/params.pp deleted file mode 100644 index 911da7e..0000000 --- a/pkg/saz-pureftpd-1.0.0/manifests/params.pp +++ /dev/null @@ -1,22 +0,0 @@ -class pureftpd::params { - case $operatingsystem { - /(Ubuntu|Debian)/: { - case $auth_type { - 'mysql': { $real_auth_type = '-mysql' } - 'ldap': { $real_auth_type = '-ldap' } - 'postgresql': { $real_auth_type = '-postgresql' } - default: { $real_auth_type = '' } - } - $package_name = "pure-ftpd${real_auth_type}" - $config_dir = '/etc/pure-ftpd/' - $service_name = "pure-ftpd${real_auth_type}" - $config_default_file = '/etc/default/pure-ftpd-common' - $config_source = 'debian' - } - } - - case $pureftpd::virtualchroot { - true: { $real_virtualchroot = true } - default: { $real_virtualchroot = false } - } -} |