Skip to content

Commit 5ae3579

Browse files
committed
Merge branch 'bobbytreed-umpython' into bobbytreed-supportability09-20
2 parents 7f9d6e1 + 368cdae commit 5ae3579

File tree

4 files changed

+9
-7
lines changed

4 files changed

+9
-7
lines changed

articles/automation/automation-hrw-run-runbooks.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,8 @@ There's no difference in the structure of runbooks that run in Azure Automation
1616

1717
When you author runbooks to run on a Hybrid Runbook Worker, you should edit and test the runbooks within the machine that hosts the Hybrid worker. The host machine has all of the PowerShell modules and network access you need to manage and access the local resources. Once a runbook is tested on the Hybrid worker machine, you can then upload it to the Azure Automation environment where it's available to run in the Hybrid worker. It's important to know that jobs that run under the Local System account for Windows or a special user account `nxautomation` on Linux. On Linux, this means that you must ensure that the `nxautomation` account has access to the location where you store your modules. When you use the [Install-Module](/powershell/module/powershellget/install-module) cmdlet, specify **AllUsers** to the `-Scope` parameter to confirm that the `naxautomation` account has access.
1818

19+
You can find a list of the sudo permissions used by the `nxautomation` account in the following [Sudoers file](https://github.com/microsoft/OMS-Agent-for-Linux/blob/master/installer/conf/sudoers).
20+
1921
For more information on PowerShell on Linux, see [Known Issues for PowerShell on Non-Windows Platforms](https://docs.microsoft.com/powershell/scripting/whats-new/known-issues-ps6?view=powershell-6#known-issues-for-powershell-on-non-windows-platforms).
2022

2123
## Starting a runbook on Hybrid Runbook Worker
@@ -35,8 +37,8 @@ Start-AzureRmAutomationRunbook –AutomationAccountName "MyAutomationAccount"
3537
3638
## Runbook permissions
3739

38-
Runbooks running on a Hybrid Runbook Worker can't use the same method that is typically used for runbooks authenticating to Azure resources, since they're accessing resources not in Azure. The runbook can either provide its own authentication to local resources, or can configure authentication using [managed identities for Azure resources](../active-directory/managed-identities-azure-resources/tutorial-windows-vm-access-arm.md#grant-your-vm-access-to-a-resource-group-in-resource-manager
39-
). You can also specify a RunAs account to provide a user context for all runbooks.
40+
Runbooks running on a Hybrid Runbook Worker can't use the same method that is typically used for runbooks authenticating to Azure resources, since they're accessing resources not in Azure. The runbook can either provide its own authentication to local resources, or can configure authentication using
41+
[managed identities for Azure resources](../active-directory/managed-identities-azure-resources/tutorial-windows-vm-access-arm.md#grant-your-vm-access-to-a-resource-group-in-resource-manager). You can also specify a RunAs account to provide a user context for all runbooks.
4042

4143
### Runbook authentication
4244

articles/automation/automation-update-management.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,11 +66,11 @@ Having a machine registered for Update Management in more than one Log Analytics
6666

6767
### Supported client types
6868

69-
The following table shows a list of supported operating systems:
69+
The following table shows a list of supported operating systems for Update Assessments. Patching requires a Hybrid Runbook Worker. For information on Hybrid Runbook Worker requirements, see the installation guides for [Windows HRW](automation-windows-hrw-install.md#installing-the-windows-hybrid-runbook-worker) and [Linux HRW](automation-linux-hrw-install#installing-a-linux-hybrid-runbook-worker.md).
7070

7171
|Operating system |Notes |
7272
|---------|---------|
73-
|Windows Server 2019 (Datacenter/Datacenter Core/Standard)<br><br>Windows Server 2016 (Datacenter/Datacenter Core/Standard)<br><br>Windows Server 2012 R2(Datacenter/Standard)<br><br>Windows Server 2012<br><br>Windows Server 2008 R2 (RTM and SP1 Standard)|**Update Assessments**: Supported<br><br>**Patching**: Requires Hybrid Runbook Worker. See [Hybrid Runbook Worker requirements](automation-windows-hrw-install.md#installing-the-windows-hybrid-runbook-worker)|
73+
|Windows Server 2019 (Datacenter/Datacenter Core/Standard)<br><br>Windows Server 2016 (Datacenter/Datacenter Core/Standard)<br><br>Windows Server 2012 R2(Datacenter/Standard)<br><br>Windows Server 2012<br><br>Windows Server 2008 R2 (RTM and SP1 Standard)||
7474
|CentOS 6 (x86/x64) and 7 (x64) | Linux agents must have access to an update repository. Classification-based patching requires 'yum' to return security data which CentOS doesn't have out of the box. For more information on classification-based patching on CentOS, see [Update classifications on Linux](#linux-2) |
7575
|Red Hat Enterprise 6 (x86/x64) and 7 (x64) | Linux agents must have access to an update repository. |
7676
|SUSE Linux Enterprise Server 11 (x86/x64) and 12 (x64) | Linux agents must have access to an update repository. |

articles/automation/change-tracking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ The following table shows the tracked item limits per machine for Change Trackin
193193
|---|---|---|
194194
|File|500||
195195
|Registry|250||
196-
|Windows software|250|Doesn't include software updates|
196+
|Windows software|250|Doesn't include software hotfixes|
197197
|Linux packages|1250||
198198
|Services|250||
199199
|Daemon|250||

articles/automation/troubleshoot/hybrid-runbook-worker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Troubleshooting - Azure Automation Hybrid Runbook Workers
33
description: This article provides information troubleshooting Azure Automation Hybrid Runbook Workers
44
services: automation
55
ms.service: automation
6-
ms.subservice:
6+
ms.subservice:
77
author: bobbytreed
88
ms.author: robreed
99
ms.date: 02/12/2019
@@ -162,7 +162,7 @@ The following example query shows the machines in a workspace and their last hea
162162

163163
```loganalytics
164164
// Last heartbeat of each computer
165-
Heartbeat
165+
Heartbeat
166166
| summarize arg_max(TimeGenerated, *) by Computer
167167
```
168168

0 commit comments

Comments
 (0)