summaryrefslogtreecommitdiffstats
path: root/sbin/tunefs
diff options
context:
space:
mode:
authorru <ru@FreeBSD.org>2003-02-23 01:50:07 +0000
committerru <ru@FreeBSD.org>2003-02-23 01:50:07 +0000
commit8a2a9091301e63f3908b341bcc984162e59a845d (patch)
treef358c6eb2249574e755e6d64c4b7ce42f92a6fb8 /sbin/tunefs
parent5ecd4995a53ef83a3ed6cc0e466632e66719f8c0 (diff)
downloadFreeBSD-src-8a2a9091301e63f3908b341bcc984162e59a845d.zip
FreeBSD-src-8a2a9091301e63f3908b341bcc984162e59a845d.tar.gz
Sort options.
Diffstat (limited to 'sbin/tunefs')
-rw-r--r--sbin/tunefs/tunefs.86
-rw-r--r--sbin/tunefs/tunefs.c38
2 files changed, 22 insertions, 22 deletions
diff --git a/sbin/tunefs/tunefs.8 b/sbin/tunefs/tunefs.8
index 1a4ab8c..d8a1207 100644
--- a/sbin/tunefs/tunefs.8
+++ b/sbin/tunefs/tunefs.8
@@ -41,10 +41,10 @@
.Sh SYNOPSIS
.Nm
.Op Fl A
-.Op Fl L Ar volname
.Op Fl a Cm enable | disable
.Op Fl e Ar maxbpg
.Op Fl f Ar avgfilesize
+.Op Fl L Ar volname
.Op Fl l Cm enable | disable
.Op Fl m Ar minfree
.Op Fl n Cm enable | disable
@@ -72,8 +72,6 @@ Specifying
this option will cause all backups to be modified as well as the
primary super-block.
This is potentially dangerous - use with caution.
-.It Fl L Ar volname
-Add/modify an optional file system volume label.
.It Fl a Cm enable | disable
Turn on/off the administrative ACL enable flag.
.It Fl e Ar maxbpg
@@ -93,6 +91,8 @@ For file systems with exclusively large files,
this parameter should be set higher.
.It Fl f Ar avgfilesize
Specify the expected average file size.
+.It Fl L Ar volname
+Add/modify an optional file system volume label.
.It Fl l Cm enable | disable
Turn on/off MAC multilabel flag.
.It Fl m Ar minfree
diff --git a/sbin/tunefs/tunefs.c b/sbin/tunefs/tunefs.c
index a861248..418fcae 100644
--- a/sbin/tunefs/tunefs.c
+++ b/sbin/tunefs/tunefs.c
@@ -96,28 +96,12 @@ main(int argc, char *argv[])
if (argc < 3)
usage();
found_arg = 0; /* at least one arg is required */
- while ((ch = getopt(argc, argv, "AL:a:e:f:l:m:n:o:ps:")) != -1)
+ while ((ch = getopt(argc, argv, "Aa:e:f:L:l:m:n:o:ps:")) != -1)
switch (ch) {
case 'A':
found_arg = 1;
Aflag++;
break;
- case 'L':
- found_arg = 1;
- name = "volume label";
- Lvalue = optarg;
- i = -1;
- while (isalnum(Lvalue[++i]));
- if (Lvalue[i] != '\0') {
- errx(10, "bad %s. Valid characters are alphanumerics.",
- name);
- }
- if (strlen(Lvalue) >= MAXVOLLEN) {
- errx(10, "bad %s. Length is longer than %d.",
- name, MAXVOLLEN - 1);
- }
- Lflag = 1;
- break;
case 'a':
found_arg = 1;
name = "ACLs";
@@ -144,6 +128,22 @@ main(int argc, char *argv[])
errx(10, "%s must be >= 1 (was %s)", name, optarg);
fflag = 1;
break;
+ case 'L':
+ found_arg = 1;
+ name = "volume label";
+ Lvalue = optarg;
+ i = -1;
+ while (isalnum(Lvalue[++i]));
+ if (Lvalue[i] != '\0') {
+ errx(10, "bad %s. Valid characters are alphanumerics.",
+ name);
+ }
+ if (strlen(Lvalue) >= MAXVOLLEN) {
+ errx(10, "bad %s. Length is longer than %d.",
+ name, MAXVOLLEN - 1);
+ }
+ Lflag = 1;
+ break;
case 'l':
found_arg = 1;
name = "multilabel MAC file system";
@@ -376,8 +376,8 @@ void
usage(void)
{
fprintf(stderr, "%s\n%s\n%s\n%s\n",
-"usage: tunefs [-A] [-L volname] [-a enable | disable] [-e maxbpg]",
-" [-f avgfilesize] [-l enable | disable] [-m minfree]",
+"usage: tunefs [-A] [-a enable | disable] [-e maxbpg] [-f avgfilesize]",
+" [-L volname] [-l enable | disable] [-m minfree]",
" [-n enable | disable] [-o space | time] [-p]",
" [-s avgfpdir] special | filesystem");
exit(2);
OpenPOWER on IntegriCloud