From e3f46bfbcffb48b65d71058ca4437f50e72e9de8 Mon Sep 17 00:00:00 2001 From: Serge Hallyn Date: Wed, 18 Sep 2013 14:00:02 -0500 Subject: [PATCH] lxc-create: add -P to --lxcpath option help text MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Serge Hallyn Acked-by: Stéphane Graber --- src/lxc/lxc_create.c | 32 ++++++++++++++++---------------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/lxc/lxc_create.c b/src/lxc/lxc_create.c index ab5886bd9..4f205e8ae 100644 --- a/src/lxc/lxc_create.c +++ b/src/lxc/lxc_create.c @@ -120,22 +120,22 @@ static struct lxc_arguments my_args = { lxc-create creates a container\n\ \n\ Options :\n\ - -n, --name=NAME NAME for name of the container\n\ - -f, --config=file initial configuration file\n\ - -t, --template=t template to use to setup container\n\ - -B, --bdev=BDEV backing store type to use\n\ - --lxcpath=PATH place container under PATH\n\ - --lvname=LVNAME Use LVM lv name LVNAME\n\ - (Default: container name)\n\ - --vgname=VG Use LVM vg called VG\n\ - (Default: lxc))\n\ - --fstype=TYPE Create fstype TYPE\n\ - (Default: ext3))\n\ - --fssize=SIZE Create filesystem of size SIZE\n\ - (Default: 1G))\n\ - --dir=DIR Place rootfs directory under DIR\n\ - --zfsroot=PATH Create zfs under given zfsroot\n\ - (Default: tank/lxc))\n", + -n, --name=NAME NAME for name of the container\n\ + -f, --config=file Initial configuration file\n\ + -t, --template=t Template to use to setup container\n\ + -B, --bdev=BDEV Backing store type to use\n\ + -P, --lxcpath=PATH Place container under PATH\n\ + --lvname=LVNAME Use LVM lv name LVNAME\n\ + (Default: container name)\n\ + --vgname=VG Use LVM vg called VG\n\ + (Default: lxc))\n\ + --fstype=TYPE Create fstype TYPE\n\ + (Default: ext3))\n\ + --fssize=SIZE Create filesystem of size SIZE\n\ + (Default: 1G))\n\ + --dir=DIR Place rootfs directory under DIR\n\ + --zfsroot=PATH Create zfs under given zfsroot\n\ + (Default: tank/lxc))\n", .options = my_longopts, .parser = my_parser, .checker = NULL,