Update help text for encryption provider

The volume encryption provider no longer uses class names.
Instead, 'luks' and 'plain' are used. This patch updates
the help text for the volume encryption provider to use
the new encryption provider format constants.

Change-Id: I6072e18f8c1945082f421a3bf725a874565d6f80
This commit is contained in:
Brianna Poulos
2018-02-16 16:06:19 -05:00
parent eb2f4d3ae8
commit 5e5f6a2d8a

View File

@@ -1658,8 +1658,8 @@ def do_encryption_type_show(cs, args):
@utils.arg('provider',
metavar='<provider>',
type=str,
help='The class that provides encryption support. '
'For example, LuksEncryptor.')
help='The encryption provider format. '
'For example, "luks" or "plain."')
@utils.arg('--cipher',
metavar='<cipher>',
type=str,
@@ -1717,7 +1717,7 @@ def do_encryption_type_create(cs, args):
type=str,
required=False,
default=argparse.SUPPRESS,
help="Class providing encryption support (e.g. LuksEncryptor)")
help="Encryption provider format (e.g. 'luks' or 'plain').")
@utils.arg('--cipher',
metavar='<cipher>',
type=str,