mirror of
https://github.com/webmin/webmin.git
synced 2025-07-20 16:48:46 +00:00
13 lines
224 B
Perl
Executable File
13 lines
224 B
Perl
Executable File
|
|
require 'ldap-useradmin-lib.pl';
|
|
|
|
# Set quota_support if quota is set
|
|
sub module_install
|
|
{
|
|
if (!defined($config{'quota_support'})) {
|
|
$config{'quota_support'} = $config{'quota'} eq '' ? 0 : 1;
|
|
&save_module_config();
|
|
}
|
|
}
|
|
|