svn commit: r367183 - head/sbin/bectl

Luca Pizzamiglio pizzamig at FreeBSD.org
Fri Oct 30 19:37:35 UTC 2020


Author: pizzamig (ports committer)
Date: Fri Oct 30 19:37:34 2020
New Revision: 367183
URL: https://svnweb.freebsd.org/changeset/base/367183

Log:
  bectl(8): missing flag in the help message
  
  Flag -o for destroy subcommand is missing in the help message,
  but present in the man page. Fix it.
  
  PR:		249325
  Approved by:	kevans
  Differential Revision:	https://reviews.freebsd.org/D26429

Modified:
  head/sbin/bectl/bectl.c

Modified: head/sbin/bectl/bectl.c
==============================================================================
--- head/sbin/bectl/bectl.c	Fri Oct 30 19:02:59 2020	(r367182)
+++ head/sbin/bectl/bectl.c	Fri Oct 30 19:37:34 2020	(r367183)
@@ -78,7 +78,7 @@ usage(bool explicit)
 	    "\tbectl check\n"
 	    "\tbectl create [-r] [-e {nonActiveBe | beName at snapshot}] beName\n"
 	    "\tbectl create [-r] beName at snapshot\n"
-	    "\tbectl destroy [-F] {beName | beName at snapshot}\n"
+	    "\tbectl destroy [-Fo] {beName | beName at snapshot}\n"
 	    "\tbectl export sourceBe\n"
 	    "\tbectl import targetBe\n"
 	    "\tbectl jail {-b | -U} [{-o key=value | -u key}]... "


More information about the svn-src-head mailing list