Hello,
I have been working on and off on Perl, for a year. My project guide at college asked me to create users on the Linux server, from a flatfile, ie provided at runtime and allocate quota's on the mailbox size only.
Well i configured my /var/spool/mail, enabled it to be enabled for user quotas. My script creates users, but does not allocate the user any quota.
How do i use the quota cmd, and force the quota onto the user(s) created??
Pls help. I am using the foll code:
sub set_new_quota { #user,blocks
local ($SYS_quota)=148;
local ($Q_SETDLIM)=3;
local ($uid,$bs) = @_ ;
local ($dir) = "/var/spool/mail\0";
local ($dqblk) = pack("LLLLLLLL",10000,$bs,0,1000,200,0,0,0);
local ($stat,$buf);
$stat=syscall($SYS_quota,$Q_SETDLIM,$dir,$uid+0,$dqblk);
return $stat==0;
}
and it won't do as is desired of it. Please help at the earliest, please. I am not having net access. Could u please send me a reply at abehl@email.com
Regards,
Amit
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.