Skip to content

Commit cc5d06c

Browse files
authored
Merge pull request #3511 from MicrosoftDocs/mde-update-linux-meta
ownership changes
2 parents d510929 + 9a76ddb commit cc5d06c

20 files changed

+76
-76
lines changed

defender-endpoint/linux-deploy-defender-for-endpoint-with-chef.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: How to Deploy Defender for Endpoint on Linux with Chef
33
description: Learn how to deploy Defender for Endpoint on Linux with Chef.
44
ms.service: defender-endpoint
5-
ms.author: deniseb
6-
author: denisebmsft
5+
ms.author: ewalsh
6+
author: emmwalshh
77
ms.reviewer: gopkr
88
ms.localizationpriority: medium
99
manager: deniseb

defender-endpoint/linux-install-with-ansible.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Deploy Microsoft Defender for Endpoint on Linux with Ansible
33
ms.reviewer: gopkr
44
description: Describes how to deploy Microsoft Defender for Endpoint on Linux using Ansible.
55
ms.service: defender-endpoint
6-
ms.author: deniseb
7-
author: denisebmsft
6+
ms.author: ewalsh
7+
author: emmwalshh
88
ms.localizationpriority: medium
99
manager: deniseb
1010
audience: ITPro

defender-endpoint/linux-install-with-puppet.md

Lines changed: 38 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Deploy Microsoft Defender for Endpoint on Linux with Puppet
33
ms.reviewer: gopkr
44
description: Describes how to deploy Microsoft Defender for Endpoint on Linux using Puppet.
55
ms.service: defender-endpoint
6-
ms.author: deniseb
7-
author: denisebmsft
6+
ms.author: ewalsh
7+
author: emmwalshh
88
ms.localizationpriority: medium
99
manager: deniseb
1010
audience: ITPro
@@ -107,51 +107,51 @@ There are two ways to create a manifest file:
107107
1. Download the installer bash script. Pull the [installer bash script](https://github.com/microsoft/mdatp-xplat/blob/master/linux/installation/mde_installer.sh) from Microsoft GitHub Repository or use the following command to download it.
108108

109109

110-
```bash
111-
wget https://raw.githubusercontent.com/microsoft/mdatp-xplat/refs/heads/master/linux/installation/mde_installer.sh /etc/puppetlabs/code/environments/production/modules/install_mdatp/files/
112-
```
110+
```bash
111+
wget https://raw.githubusercontent.com/microsoft/mdatp-xplat/refs/heads/master/linux/installation/mde_installer.sh /etc/puppetlabs/code/environments/production/modules/install_mdatp/files/
112+
```
113113

114114
2. Add the following content to the `install_mdatp/manifests/init.pp` file. You can also download the file directly from [GitHub](https://github.com/microsoft/mdatp-xplat/blob/master/linux/installation/third_party_installation_playbooks/puppet.install_mdatp_simplified.init.pp)
115115

116-
```bash
116+
```bash
117117

118-
# Puppet manifest to install Microsoft Defender for Endpoint on Linux.
119-
# @param channel The release channel based on your environment, insider-fast or prod.
118+
# Puppet manifest to install Microsoft Defender for Endpoint on Linux.
119+
# @param channel The release channel based on your environment, insider-fast or prod.
120120

121-
class install_mdatp (
122-
$channel = 'prod',
123-
) {
124-
# Ensure that the directory /tmp/mde_install exists
125-
file { '/tmp/mde_install':
126-
ensure => directory,
127-
mode => '0755',
128-
}
121+
class install_mdatp (
122+
$channel = 'prod',
123+
) {
124+
# Ensure that the directory /tmp/mde_install exists
125+
file { '/tmp/mde_install':
126+
ensure => directory,
127+
mode => '0755',
128+
}
129129

130-
# Copy the installation script to the destination
131-
file { '/tmp/mde_install/mde_installer.sh':
132-
ensure => file,
133-
source => 'puppet:///modules/install_mdatp/mde_installer.sh',
134-
mode => '0777',
135-
}
130+
# Copy the installation script to the destination
131+
file { '/tmp/mde_install/mde_installer.sh':
132+
ensure => file,
133+
source => 'puppet:///modules/install_mdatp/mde_installer.sh',
134+
mode => '0777',
135+
}
136136

137-
# Copy the onboarding script to the destination
138-
file { '/tmp/mde_install/mdatp_onboard.json':
139-
ensure => file,
140-
source => 'puppet:///modules/install_mdatp/mdatp_onboard.json',
141-
mode => '0777',
142-
}
137+
# Copy the onboarding script to the destination
138+
file { '/tmp/mde_install/mdatp_onboard.json':
139+
ensure => file,
140+
source => 'puppet:///modules/install_mdatp/mdatp_onboard.json',
141+
mode => '0777',
142+
}
143143

144-
# Install MDE on the host using an external script
145-
exec { 'install_mde':
146-
command => "/tmp/mde_install/mde_installer.sh --install --channel ${channel} --onboard /tmp/mde_install/mdatp_onboard.json",
147-
path => '/bin:/usr/bin',
148-
user => 'root',
149-
logoutput => true,
150-
require => File['/tmp/mde_install/mde_installer.sh', '/tmp/mde_install/mdatp_onboard.json'], # Ensure the script is copied before running the installer
151-
}
144+
# Install MDE on the host using an external script
145+
exec { 'install_mde':
146+
command => "/tmp/mde_install/mde_installer.sh --install --channel ${channel} --onboard /tmp/mde_install/mdatp_onboard.json",
147+
path => '/bin:/usr/bin',
148+
user => 'root',
149+
logoutput => true,
150+
require => File['/tmp/mde_install/mde_installer.sh', '/tmp/mde_install/mdatp_onboard.json'], # Ensure the script is copied before running the installer
151+
}
152152

153-
}
154-
```
153+
}
154+
```
155155
> [!NOTE]
156156
> The installer script also supports other parameters such as channel, realtime protection, version, etc. To select from the list of available options, check help.
157157
>`./mde_installer.sh --help`

defender-endpoint/linux-install-with-saltack.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Deploy Microsoft Defender for Endpoint on Linux with SaltStack
33
ms.reviewer: dmcwee, gopkr
44
description: Describes how to deploy Microsoft Defender for Endpoint on Linux using Saltstack.
55
ms.service: defender-endpoint
6-
ms.author: deniseb
7-
author: denisebmsft
6+
ms.author: ewalsh
7+
author: emmwalshh
88
ms.localizationpriority: medium
99
manager: deniseb
1010
audience: ITPro

defender-endpoint/linux-preferences.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Configure security settings in Microsoft Defender for Endpoint on Linux
33
ms.reviewer: gopkr, ardeshmukh
44
description: Describes how to configure Microsoft Defender for Endpoint on Linux in enterprises.
55
ms.service: defender-endpoint
6-
ms.author: deniseb
7-
author: denisebmsft
6+
ms.author: ewalsh
7+
author: emmwalshh
88
ms.localizationpriority: medium
99
ms.date: 03/28/2025
1010
manager: deniseb

defender-endpoint/linux-privacy.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: Privacy for Microsoft Defender for Endpoint on Linux
33
description: Privacy controls, how to configure policy settings that impact privacy and information about the diagnostic data that is collected in Microsoft Defender for Endpoint on Linux.
44
ms.service: defender-endpoint
5-
ms.author: deniseb
6-
author: denisebmsft
5+
ms.author: ewalsh
6+
author: emmwalshh
77
ms.reviewer: gopkr
88
ms.localizationpriority: medium
99
manager: deniseb

defender-endpoint/linux-pua.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
title: Detect and block potentially unwanted applications with Microsoft Defender for Endpoint on Linux
33
description: Detect and block Potentially Unwanted Applications (PUA) using Microsoft Defender for Endpoint on Linux.
44
ms.service: defender-endpoint
5-
ms.author: deniseb
6-
author: denisebmsft
5+
ms.author: ewalsh
6+
author: emmwalshh
77
ms.reviewer: gopkr
88
ms.localizationpriority: medium
99
manager: deniseb

defender-endpoint/linux-resources.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Microsoft Defender for Endpoint on Linux resources
33
ms.reviewer: gopkr, yujiao
44
description: Describes resources for Microsoft Defender for Endpoint on Linux, including how to uninstall it, how to collect diagnostic logs, CLI commands, and known issues with the product.
55
ms.service: defender-endpoint
6-
ms.author: deniseb
7-
author: denisebmsft
6+
ms.author: ewalsh
7+
author: emmwalshh
88
ms.localizationpriority: medium
99
manager: deniseb
1010
audience: ITPro

defender-endpoint/linux-static-proxy-configuration.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Microsoft Defender for Endpoint on Linux static proxy discovery
33
ms.reviewer: gopkr
44
description: Describes how to configure Microsoft Defender for Endpoint on Linux, for static proxy discovery.
55
ms.service: defender-endpoint
6-
ms.author: deniseb
7-
author: denisebmsft
6+
ms.author: ewalsh
7+
author: emmwalshh
88
ms.localizationpriority: medium
99
manager: deniseb
1010
audience: ITPro

defender-endpoint/linux-support-connectivity.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ title: Troubleshoot cloud connectivity issues for Microsoft Defender for Endpoin
33
ms.reviewer: gopkr
44
description: Learn how to troubleshoot cloud connectivity issues for Microsoft Defender for Endpoint on Linux.
55
ms.service: defender-endpoint
6-
ms.author: deniseb
7-
author: denisebmsft
6+
ms.author: ewalsh
7+
author: emmwalshh
88
ms.localizationpriority: medium
99
manager: deniseb
1010
audience: ITPro

0 commit comments

Comments
 (0)