⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 save_user_quota.cgi

📁 Unix下基于Web的管理工具
💻 CGI
字号:
#!/usr/local/bin/perl# save_user_quota.cgi# Update the quota for some userrequire './quota-lib.pl';&ReadParse();&can_edit_user($in{'user'}) ||	&error("You are not allowed to edit quotas for this user");&can_edit_filesys($in{'filesys'}) ||	&error("You are not allowed to edit quotas on this filesystem");&edit_user_quota($in{'user'}, $in{'filesys'},		 $in{'sblocks_def'} ? 0 : $in{'sblocks'},		 $in{'hblocks_def'} ? 0 : $in{'hblocks'},		 $in{'sfiles_def'} ? 0 : $in{'sfiles'},		 $in{'hfiles_def'} ? 0 : $in{'hfiles'});if ($in{'source'}) { &redirect("user_filesys.cgi?user=$in{'user'}"); }else { &redirect("list_users.cgi?$in{'filesys'}"); }

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -