Skip to content

Commit 7504f42

Browse files
committed
Update linux-install-with-puppet.md
1 parent 3c93f95 commit 7504f42

File tree

1 file changed

+16
-15
lines changed

1 file changed

+16
-15
lines changed

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

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ This article describes how to deploy Defender for Endpoint on Linux using Puppet
3333

3434
- [Download the onboarding package](#download-the-onboarding-package)
3535
- [Create Puppet manifest](#create-a-puppet-manifest)
36-
- [Deployment](#deployment)
37-
- [Check onboarding status](#check-onboarding-status)
36+
- [Deployment (include the manifest inside the site.pp file)](#include-the-manifest-inside-the-sitepp-file)
37+
- [Monitor your Puppet deployment](#monitor-puppet-deployment)
3838

3939
[!INCLUDE [Microsoft Defender for Endpoint third-party tool support](../includes/support.md)]
4040

@@ -72,14 +72,14 @@ Download the onboarding package from Microsoft Defender portal.
7272

7373
5. Extract the contents of the archive.
7474

75-
```bash
76-
unzip WindowsDefenderATPOnboardingPackage.zip
77-
```
75+
```bash
76+
unzip WindowsDefenderATPOnboardingPackage.zip
77+
```
7878

79-
```console
80-
Archive: WindowsDefenderATPOnboardingPackage.zip
81-
inflating: mdatp_onboard.json
82-
```
79+
```console
80+
Archive: WindowsDefenderATPOnboardingPackage.zip
81+
inflating: mdatp_onboard.json
82+
```
8383

8484
## Create a Puppet manifest
8585

@@ -115,15 +115,16 @@ You need to create a Puppet manifest for deploying Defender for Endpoint on Linu
115115

116116
There are two ways to create manifest file:
117117

118-
1. create manifest using installer script
118+
1. Create manifest using installer script.
119119

120-
1. create manifest by configuring repositories manually
120+
2. Create manifest by configuring repositories manually.
121121

122122
#### Create manifest to deploy Defender for Endpoint using Installer Script
123123

124-
Add below contents to the `install_mdatp/manifests/init.pp` file. You can also download the file directly from [GitHub](https://teams.microsoft.com/l/message/19:2c1dc910-b8b7-415a-a9fd-2cd04843b43c_cb7ab2ef-8a66-4fcf-8c66-1723507f52df@unq.gbl.spaces/1734343607885?context=%7B%22contextType%22%3A%22chat%22%7D)
124+
Add the following content to the `install_mdatp/manifests/init.pp` file. You can also download the file directly from [GitHub](https://teams.microsoft.com/l/message/19:2c1dc910-b8b7-415a-a9fd-2cd04843b43c_cb7ab2ef-8a66-4fcf-8c66-1723507f52df@unq.gbl.spaces/1734343607885?context=%7B%22contextType%22%3A%22chat%22%7D)
125+
126+
```bash
125127
126-
```puppet
127128
# Puppet manifest to install Microsoft Defender for Endpoint on Linux.
128129
# @param channel The release channel based on your environment, insider-fast or prod.
129130
@@ -150,7 +151,7 @@ class install_mdatp (
150151
mode => '0777',
151152
}
152153
153-
#Install MDE on the host using an external script
154+
# Install MDE on the host using an external script
154155
exec { 'install_mde':
155156
command => "/tmp/mde_install/mde_installer.sh --install --channel ${channel} --onboard /tmp/mde_install/mdatp_onboard.json",
156157
path => '/bin:/usr/bin',
@@ -187,7 +188,7 @@ In the below commands, replace *[distro]* and *[version]* with the information y
187188

188189
Add below contents to the `install_mdatp/manifests/init.pp` file
189190

190-
```puppet
191+
```bash
191192
# Puppet manifest to install Microsoft Defender for Endpoint on Linux.
192193
# @param channel The release channel based on your environment, insider-fast or prod.
193194

0 commit comments

Comments
 (0)