Skip to content

Commit 5fc6be5

Browse files
authored
acrolinx scoring updates
acrolinx scoring updates to meet minimum score
1 parent 5d0b437 commit 5fc6be5

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

support/azure/virtual-machines/linux/repair-linux-vm-using-ALAR.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Repair a Linux VM automatically with the help of ALAR
3-
description: This article describes how to automatically repair a non bootable VM with the Azure Linux Auto Repair (ALAR) scripts.
3+
description: This article describes how to automatically repair a non-bootable VM with the Azure Linux Auto Repair (ALAR) scripts.
44
services: virtual-machines-linux
55
documentationcenter: ''
66
author: pagienge
@@ -51,7 +51,7 @@ The ALAR scripts use the [az vm repair](/cli/azure/vm/repair) extension, `run` c
5151
az vm repair create --verbose --resource-group <RG-NAME> --name <VM-NAME>
5252
```
5353
54-
- There are currently 3 parameters which will prompt for values if they are not given on the command line. Add these parameters and values to the command for a non-interactive execution
54+
- There are currently three parameters that will prompt for values if they aren't given on the command line. Add these parameters and values to the command for a non-interactive execution
5555
- `--repair-username <RESCUE-USERNAME>`
5656
- `--repair-password <RESCUE-PASS>`
5757
- `--associate-public-ip`
@@ -63,7 +63,7 @@ The ALAR scripts use the [az vm repair](/cli/azure/vm/repair) extension, `run` c
6363
az vm repair run --verbose --resource-group <RG-NAME> --name <VM-NAME> --run-id linux-alar2 --parameters <action1,action2,...> --run-on-repair
6464
```
6565
66-
valid action names will be given below.
66+
valid action names are given below.
6767
6868
3. Swap the copy of the OS disk back to the original VM and delete the temporary resources:
6969
@@ -72,15 +72,15 @@ The ALAR scripts use the [az vm repair](/cli/azure/vm/repair) extension, `run` c
7272
```
7373
7474
> [!NOTE]
75-
> The original and new disks won't be deleted.
75+
> The original and new disks aren't deleted during the `restore` phase.
7676
7777
In all of the example commands these are the parameters shown:
7878
7979
- `RG-NAME`: The name of the resource group containing the broken VM.
8080
- `VM-NAME`: The name of the broken VM.
8181
- `RESCUE-UID`: The user created on the repair VM for login. It's the equivalent of the user created on a new VM in the Azure portal.
8282
- `RESCUE-PASS`: The password for `RESCUE-UID`, enclosed in single quotes. For example: `'password!234'`.
83-
- `action1,action2`, etc.: One or more of the defined actions available to apply to the broken VM. See the complete list of actions below, and in the [ALAR github ReadMe](https://github.com/Azure/ALAR). You can pass one or more actions which will be run consecutively. For multiple operations, delineate them using commas without spaces, such as `fstab,sudo`.
83+
- `action1,action2`, etc.: One or more of the defined actions available to apply to the broken VM. See the complete list of actions below, and in the [ALAR GitHub ReadMe](https://github.com/Azure/ALAR). You can pass one or more actions that are run consecutively. For multiple operations, delineate them using commas without spaces, such as `fstab,sudo`.
8484
8585
## The ALAR actions
8686

0 commit comments

Comments
 (0)