aboutsummaryrefslogtreecommitdiff
path: root/sbin
diff options
context:
space:
mode:
authorDag-Erling Smørgrav <des@FreeBSD.org>2024-03-18 13:49:23 +0000
committerDag-Erling Smørgrav <des@FreeBSD.org>2024-03-18 13:49:23 +0000
commita46217ce7d161ce563374899df4d94b6d000138f (patch)
tree9a97e75e2bca58b9f0a0e1c8ec7f1eba8d865a5c /sbin
parente819534f15308c92afd19166254604995766ce32 (diff)
downloadsrc-a46217ce7d161ce563374899df4d94b6d000138f.tar.gz
src-a46217ce7d161ce563374899df4d94b6d000138f.zip
bectl: Simplify command aliases.
MFC after: 3 days Reviewed by: kevans Differential Revision: https://reviews.freebsd.org/D44406
Diffstat (limited to 'sbin')
-rw-r--r--sbin/bectl/bectl.c9
1 files changed, 2 insertions, 7 deletions
diff --git a/sbin/bectl/bectl.c b/sbin/bectl/bectl.c
index 68f3de5b7e78..f4359750a8d7 100644
--- a/sbin/bectl/bectl.c
+++ b/sbin/bectl/bectl.c
@@ -114,7 +114,9 @@ static struct command_map_entry command_map[] =
{ "mount", bectl_cmd_mount, false },
{ "rename", bectl_cmd_rename, false },
{ "unjail", bectl_cmd_unjail, false },
+ { "ujail", bectl_cmd_unjail, false },
{ "unmount", bectl_cmd_unmount, false },
+ { "umount", bectl_cmd_unmount, false },
{ "check", bectl_cmd_check, true },
};
@@ -570,13 +572,6 @@ main(int argc, char *argv[])
optreset = 1;
optind = 1;
- /* Handle command aliases */
- if (strcmp(command, "umount") == 0)
- command = "unmount";
-
- if (strcmp(command, "ujail") == 0)
- command = "unjail";
-
if ((cmd = get_cmd_info(command)) == NULL) {
fprintf(stderr, "Unknown command: %s\n", command);
return (usage(false));