summaryrefslogtreecommitdiffstats
path: root/rules/quota-tools.in
diff options
context:
space:
mode:
authorBart vdr. Meulen <bartvdrmeulen@gmail.com>2010-05-07 23:34:25 +0200
committerRemy Bohmer <linux@bohmer.net>2010-06-02 21:09:28 +0200
commitec656bfe81b0cc06b9bdd7c006d93acb7da2c6b4 (patch)
tree980b1ddb127e25ee5644a56321d4f60628807568 /rules/quota-tools.in
parent84ce0931b8900a6818005772b38c6d4deb4d2611 (diff)
downloadptxdist-ec656bfe81b0cc06b9bdd7c006d93acb7da2c6b4.tar.gz
ptxdist-ec656bfe81b0cc06b9bdd7c006d93acb7da2c6b4.tar.xz
[quota-tools] add new packet
Add tools to create and configure disk quota for filesystems Signed-off-by: Bart vdr. Meulen <bartvdrmeulen@gmail.com> Signed-off-by: Remy Bohmer <linux@bohmer.net>
Diffstat (limited to 'rules/quota-tools.in')
-rw-r--r--rules/quota-tools.in81
1 files changed, 81 insertions, 0 deletions
diff --git a/rules/quota-tools.in b/rules/quota-tools.in
new file mode 100644
index 000000000..037eab774
--- /dev/null
+++ b/rules/quota-tools.in
@@ -0,0 +1,81 @@
+## SECTION=disk_and_file
+
+menuconfig QUOTA_TOOLS
+ tristate
+ prompt "Disk Quota Tools"
+ select E2FSPROGS
+ select E2FSPROGS_LIBEXT2FS
+ select E2FSPROGS_LIBCOM_ERR
+ help
+ Tools and patches for the Linux Diskquota system as part of the
+ Linux kernel (http://sourceforge.net/projects/linuxquota)
+
+if QUOTA_TOOLS
+
+config QUOTA_TOOLS_QUOTA
+ bool
+ prompt "install quota"
+ help
+ displays users' disk usage and limits
+
+config QUOTA_TOOLS_REPQUOTA
+ bool
+ prompt "install repquota"
+ help
+ summarize quotas for a filesystem
+
+config QUOTA_TOOLS_QUOT
+ bool
+ prompt "install quot"
+ help
+ summarizes file system ownership
+
+config QUOTA_TOOLS_EDQUOTA
+ bool
+ prompt "install edquota"
+ help
+ edit user quotas
+
+config QUOTA_TOOLS_SETQUOTA
+ bool
+ prompt "install setquota"
+ help
+ command line quota editor
+
+config QUOTA_TOOLS_QUOTAONOFF
+ bool
+ prompt "install quotaon / quotaoff"
+ help
+ turn filesystem quotas on and off
+
+config QUOTA_TOOLS_WARNQUOTA
+ bool
+ prompt "install warnquota"
+ help
+ checks the disk quota for each filesystem and mails a warning message to those users who have reached their softlimit
+
+config QUOTA_TOOLS_QUOTACHECK
+ bool
+ prompt "install quotacheck"
+ help
+ scan a filesystem for disk usage, create, check and repair quota files
+
+config QUOTA_TOOLS_CONVERTQUOTA
+ bool
+ prompt "install convertquota"
+ help
+ convert quota from old file format to new one
+
+config QUOTA_TOOLS_QUOTASTATS
+ bool
+ prompt "install quotastats"
+ help
+ query quota statistics
+
+config QUOTA_TOOLS_RQUOTAD
+ bool
+ prompt "install rpc.rquotad"
+ help
+ remote quota server
+
+endif