diff options
Diffstat (limited to 'perl-install/fs')
-rw-r--r-- | perl-install/fs/mount.pm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/perl-install/fs/mount.pm b/perl-install/fs/mount.pm index 571aee09f..6b9191a73 100644 --- a/perl-install/fs/mount.pm +++ b/perl-install/fs/mount.pm @@ -173,7 +173,7 @@ sub part { if ($options =~ /usrquota|grpquota/ && member($part->{fs_type}, qw(ext3 ext4dev))) { if (! find { -e "$mntpoint/$_" } qw(aquota.user aquota.group quota.user quota.group)) { #- quotacheck will create aquota.user and/or aquota.group, - #- needed for quotas on ext[34]. + #- needed for quotas on ext3/ext4. run_program::run('quotacheck', $mntpoint); } } |