traveler has asked for the wisdom of the Perl Monks concerning the following question:

I have the following code
Use Quota; ... Quota::setqlim(Quota::getqcarg($dir), $uid, $soft_blocks, $hard_blocks +, $soft_i, $hard_i, 0, 0); } Quota::sync($dir);
Which works well on my development box. When I move it to the production box, it does not seem to do anything. Both boxes are Mandrake 8. Both have quotas enabled. edquota works fine on both boxes. I tested as root in both cases. I also tried making the sync call just Quota::sync() to no avail. Am I missing something?

--traveler