Skip to content

Commit 3b1ba73

Browse files
committed
Remove unhelpful lightbox, correct code blocks to valid type
1 parent d6239b8 commit 3b1ba73

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

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

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -62,15 +62,15 @@ Here are a few important points:
6262

6363
3. Select **Download onboarding package**. Save the file as `WindowsDefenderATPOnboardingPackage.zip`.
6464

65-
:::image type="content" source="media/portal-onboarding-linux-2.png" alt-text="The Download onboarding package option" lightbox="media/portal-onboarding-linux-2.png":::
65+
:::image type="content" source="media/portal-onboarding-linux-2.png" alt-text="The Download onboarding package option":::
6666

6767
4. On the SaltStack Master, extract the contents of the archive to the SaltStack Server's folder (typically `/srv/salt`):
6868

6969
```bash
7070
ls -l
7171
```
7272

73-
```Output
73+
```console
7474
total 8
7575
-rw-r--r-- 1 test staff 4984 Feb 18 11:22 WindowsDefenderATPOnboardingPackage.zip
7676
```
@@ -79,7 +79,7 @@ Here are a few important points:
7979
unzip WindowsDefenderATPOnboardingPackage.zip -d /srv/salt/mde
8080
```
8181

82-
```Output
82+
```console
8383
Archive: WindowsDefenderATPOnboardingPackage.zip
8484
inflating: /srv/salt/mde/mdatp_onboard.json
8585
```
@@ -115,7 +115,7 @@ In this step, you create a SaltState state file in your configuration repository
115115
cat /srv/salt/install_mdatp.sls
116116
```
117117
118-
```output
118+
```console
119119
add_ms_repo:
120120
pkgrepo.managed:
121121
- humanname: Microsoft Defender Repository
@@ -136,7 +136,7 @@ In this step, you create a SaltState state file in your configuration repository
136136
137137
2. Add the package installed state to `install_mdatp.sls` after the `add_ms_repo` state as previously defined.
138138
139-
```Output
139+
```console
140140
install_mdatp_package:
141141
pkg.installed:
142142
- name: matp
@@ -145,7 +145,7 @@ In this step, you create a SaltState state file in your configuration repository
145145
146146
4. Add the onboarding file deployment to `install_mdatp.sls` after the `install_mdatp_package` as previously defined.
147147
148-
```Output
148+
```console
149149
copy_mde_onboarding_file:
150150
file.managed:
151151
- name: /etc/opt/microsoft/mdatp/mdatp_onboard.json
@@ -155,7 +155,7 @@ In this step, you create a SaltState state file in your configuration repository
155155
156156
The completed install state file should look similar to this output:
157157
158-
```Output
158+
```console
159159
add_ms_repo:
160160
pkgrepo.managed:
161161
- humanname: Microsoft Defender Repository
@@ -193,15 +193,15 @@ In this step, you create a SaltState state file in your configuration repository
193193
cat /srv/salt/uninstall_mdatp.sls
194194
```
195195
196-
```Output
196+
```console
197197
remove_mde_onboarding_file:
198198
file.absent:
199199
- name: /etc/opt/microsoft/mdatp/mdatp_onboard.json
200200
```
201201
202202
6. Add the offboarding file deployment to the `uninstall_mdatp.sls` file after the `remove_mde_onboarding_file` state defined in the previous section.
203203
204-
```Output
204+
```console
205205
offboard_mde:
206206
file.managed:
207207
- name: /etc/opt/microsoft/mdatp/mdatp_offboard.json
@@ -210,15 +210,15 @@ In this step, you create a SaltState state file in your configuration repository
210210
211211
7. Add the removal of the MDATP package to the `uninstall_mdatp.sls` file after the `offboard_mde` state defined in the previous section.
212212
213-
```Output
213+
```console
214214
remove_mde_packages:
215215
pkg.removed:
216216
- name: mdatp
217217
```
218218
219219
The complete uninstall state file should look similar to the following output:
220220
221-
```Output
221+
```console
222222
remove_mde_onboarding_file:
223223
file.absent:
224224
- name: /etc/opt/microsoft/mdatp/mdatp_onboard.json

0 commit comments

Comments
 (0)