diff options
author | ennael <ennael@mageia.org> | 2013-09-03 14:38:06 +0200 |
---|---|---|
committer | ennael <ennael@mageia.org> | 2013-09-03 14:38:06 +0200 |
commit | b6123a770ee606b08de4fe07364b79c0cf3efbab (patch) | |
tree | 52402b01353dd2bf189b7ac30eed86696da2ab43 /perl-install | |
parent | 87f54a02c24d07c0bfa10139d926feed7fbd0067 (diff) | |
download | drakx-b6123a770ee606b08de4fe07364b79c0cf3efbab.tar drakx-b6123a770ee606b08de4fe07364b79c0cf3efbab.tar.gz drakx-b6123a770ee606b08de4fe07364b79c0cf3efbab.tar.bz2 drakx-b6123a770ee606b08de4fe07364b79c0cf3efbab.tar.xz drakx-b6123a770ee606b08de4fe07364b79c0cf3efbab.zip |
fix syntax
Diffstat (limited to 'perl-install')
-rw-r--r-- | perl-install/authentication.pm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/perl-install/authentication.pm b/perl-install/authentication.pm index e4c623a06..fd44bb22c 100644 --- a/perl-install/authentication.pm +++ b/perl-install/authentication.pm @@ -907,7 +907,7 @@ sub configure_nss_ldap { 'base shadow' => $authentication->{nss_shadow}, 'base passwd' => $authentication->{nss_pwd}, 'base group' => $authentication->{nss_grp}, - scope => sub, + scope => "sub", ); } else { @@ -915,7 +915,7 @@ sub configure_nss_ldap { 'base shadow' => $authentication->{LDAPDOMAIN}, 'base passwd' => $authentication->{LDAPDOMAIN}, 'base group' => $authentication->{LDAPDOMAIN}, - scope => sub, + scope => "sub", ); } if ($authentication->{anonymous} eq '1') { |