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