diff --git a/src/vm-repair/HISTORY.rst b/src/vm-repair/HISTORY.rst index 3536efff79b..6fa4520e9d5 100644 --- a/src/vm-repair/HISTORY.rst +++ b/src/vm-repair/HISTORY.rst @@ -1,6 +1,9 @@ Release History =============== +2.0.4 +++++++ +Updated `az vm repair repair-button` and `az vm repair repair-and-restore` help descriptions and parameter description in the --button-command argument from repair-button. 2.0.3 ++++++ diff --git a/src/vm-repair/azext_vm_repair/_help.py b/src/vm-repair/azext_vm_repair/_help.py index bdd0bbedde0..4127dc018b7 100644 --- a/src/vm-repair/azext_vm_repair/_help.py +++ b/src/vm-repair/azext_vm_repair/_help.py @@ -110,7 +110,7 @@ helps['vm repair repair-and-restore'] = """ type: command - short-summary: Repair and restore the VM. + short-summary: Non-interactive command. Repairs fstab issues using a temporary repair VM and restore the VM by replacing the VM's OS disk with the fixed temporary copied disk. examples: - name: Repair and restore a VM. text: > @@ -118,7 +118,7 @@ """ helps['vm repair repair-button'] = """ type: command - short-summary: repair button script. + short-summary: Non-interactive command used by repair VM buttons. Repairs issues using ALAR scripts. Creates a temporary repair VM and restores the VM by replacing the VM's OS disk with the fixed copied disk. examples: - name: repair-button. text: > diff --git a/src/vm-repair/azext_vm_repair/_params.py b/src/vm-repair/azext_vm_repair/_params.py index 23bfaf3e2a8..e5f844e8d1b 100644 --- a/src/vm-repair/azext_vm_repair/_params.py +++ b/src/vm-repair/azext_vm_repair/_params.py @@ -65,7 +65,7 @@ def load_arguments(self, _): c.argument('repair_group_name', help='Name for new or existing resource group that will contain repair VM.') with self.argument_context('vm repair repair-button') as c: - c.argument('button_command', help='Button_command for repair VM.') + c.argument('button_command', help='Specific ALAR script being used for repair VM.') c.argument('repair_username', help='Admin username for repair VM.') c.argument('repair_password', help='Admin password for the repair VM.') c.argument('copy_disk_name', help='Name of OS disk copy.') diff --git a/src/vm-repair/setup.py b/src/vm-repair/setup.py index 5ebb337854d..b8387429c04 100644 --- a/src/vm-repair/setup.py +++ b/src/vm-repair/setup.py @@ -8,7 +8,7 @@ from codecs import open from setuptools import setup, find_packages -VERSION = "2.0.3" +VERSION = "2.0.4" CLASSIFIERS = [ 'Development Status :: 4 - Beta',