summaryrefslogtreecommitdiff
path: root/bin
diff options
Diffstat (limited to 'bin')
-rwxr-xr-xbin/recovery_info12
1 files changed, 7 insertions, 5 deletions
diff --git a/bin/recovery_info b/bin/recovery_info
index 9ce924e4..69bc64bd 100755
--- a/bin/recovery_info
+++ b/bin/recovery_info
@@ -105,9 +105,11 @@ class MountedPartitionTests(unittest.TestCase):
class RecoveryVersion(Command):
"""
- subcommand of RecoveryInfo.
+ print the version of recovery image.
+
+ @EPILOG@
- print out the version information.
+ This commands prints information such as:
image_version: xxx
bto_version: REV_xxx.iso (dell only)
@@ -145,9 +147,9 @@ class RecoveryVersion(Command):
class RecoveryFile(Command):
"""
- subcommand of RecoveryInfo.
+ display a single file from the recovery partition
- print out the file in recovery partition.
+ This command can be used to ``cat`` any file from the recovery partition
"""
def register_arguments(self, parser):
@@ -157,7 +159,7 @@ class RecoveryFile(Command):
:param parser:
Argument parser (from :mod:`argparse`) specific to this command.
"""
- parser.add_argument('file', help='File name of print out the content')
+ parser.add_argument('file', help='name of the file to display')
def invoked(self, ctx):
"""