Skip to content

Commit 455ec13

Browse files
authored
Update linux-install-with-ansible.md
1 parent 76a8d83 commit 455ec13

File tree

1 file changed

+9
-8
lines changed

1 file changed

+9
-8
lines changed

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

Lines changed: 9 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ Pull the [installer bash script](https://github.com/microsoft/mdatp-xplat/tree/m
115115

116116
### Create Ansible YAML files
117117

118-
Create installation YAML file
118+
Create installation YAML file. You can also download the file directly from [GitHub](https://learn.microsoft.com/en-us/defender-endpoint/linux-support-events)
119119

120120
```bash
121121
- name: Install and Onboard MDE
@@ -129,7 +129,7 @@ Create installation YAML file
129129
130130
- name: Copy Onboarding script
131131
ansible.builtin.copy:
132-
src: "{{ onboarding_script }}"
132+
src: "{{ onboarding_json }}"
133133
dest: /tmp/mde_install/mdatp_onboard.json
134134
- name: Install MDE on host
135135
ansible.builtin.script: "{{ mde_installer_script }} --install --channel {{ channel | default('insiders-fast') }} --onboard /tmp/mde_install/mdatp_onboard.json"
@@ -144,17 +144,14 @@ Create installation YAML file
144144
- name: Display any installation errors
145145
debug:
146146
msg: "{{ script_output.stderr }}"
147-
148147
```
149148
150149
### Apply the above playbook using the following command
151150
152151
Replace the corresponding paths and channel in the below command as per your requirement
153152
154153
```bash
155-
ansible-playbook -i /etc/ansible/hosts /etc/ansible/playbooks/install_mdatp.yml --extra-vars "onboarding_script=<path to mdatp_onboard.json > mde_installer_script=<path to mde_installer.sh> channel=<channel to deploy for: insiders-fast / insiders-slow / prod> "
156-
157-
154+
ansible-playbook -i /etc/ansible/hosts /etc/ansible/playbooks/install_mdatp.yml --extra-vars "onboarding_json=<path to mdatp_onboard.json > mde_installer_script=<path to mde_installer.sh> channel=<channel to deploy for: insiders-fast / insiders-slow / prod> "
158155
```
159156
160157
### Verify if the deployment is successful
@@ -224,7 +221,7 @@ ansible-playbook -i /etc/ansible/hosts /etc/ansible/playbooks/install_mdatp.yml
224221
225222
### How to uninstall Microsoft Defender for Endpoint on Linux Servers
226223
227-
Create uninstallation YAML file (eg: /etc/ansible/playbooks/uninstall_mdatp.yml)  which uses mde_installer.sh
224+
Create uninstallation YAML file (eg: /etc/ansible/playbooks/uninstall_mdatp.yml) which uses mde_installer.sh. You can also download the file directly from [GitHub](https://learn.microsoft.com/en-us/defender-endpoint/linux-support-events)
228225
229226
```bash
230227
@@ -442,7 +439,6 @@ Now run the tasks files under `/etc/ansible/playbooks/` or relevant directory.
442439
```
443440
444441
## Troubleshoot installation issues
445-
-For log installation issues, see for more information on
446442
For self-troubleshooting, do the following
447443
1. Refer to [Log installation issues](linux-resources.md#log-installation-issues) for more information on how to find the automatically generated log that is created by the installer when an error occurs.
448444
2. Refer to [Installation issues](https://learn.microsoft.com/en-us/defender-endpoint/linux-support-install) for more information on commonly occurring installation issues
@@ -452,6 +448,11 @@ For self-troubleshooting, do the following
452448
453449
To get support from Microsoft, raise a support ticket and provide log dump by [running client analyser](https://learn.microsoft.com/en-us/defender-endpoint/run-analyzer-macos-linux)
454450
451+
## How to configure policies for Microsoft Defender on Linux
452+
You can configure AV/EDR settings on your endpoints using following methods
453+
3. Refer to [set preferences](https://learn.microsoft.com/en-us/defender-endpoint/linux-preferences) to learn more about the available settings
454+
4. Refer to [security settings management](https://learn.microsoft.com/en-us/mem/intune/protect/mde-security-integration) to configure settings via Microsoft Defender Portal
455+
455456
456457
## Operating system upgrades
457458

0 commit comments

Comments
 (0)