We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ee08ab9 commit 8be02d1Copy full SHA for 8be02d1
manifests/init.pp
@@ -30,7 +30,7 @@
30
31
class{ 'pureftpd::install': use_selinux => $use_selinux }
32
33
- unless (empty($config_ldap)) {
+ if ! empty($config_ldap) {
34
# insert the path to the ldap conf file into pure-ftpd.conf
35
$enable_ldap = { ldapconfigfile => $pureftpd::params::ldap_conf_path }
36
@@ -46,7 +46,7 @@
46
Class[ 'pureftpd::config::ldap' ]
47
}
48
49
- unless (empty($config_pgsql)) {
+ if ! empty($config_pgsql) {
50
# insert the path to the pgsql conf file into pure-ftpd.conf
51
$enable_pgsql = { pgsqlconfigfile => $pureftpd::params::pgsql_conf_path }
52
0 commit comments