You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: defender-endpoint/linux-install-with-puppet.md
+36-36Lines changed: 36 additions & 36 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -107,51 +107,51 @@ There are two ways to create a manifest file:
107
107
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.
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)
115
115
116
-
```bash
116
+
```bash
117
117
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.
120
120
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
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
require => File['/tmp/mde_install/mde_installer.sh', '/tmp/mde_install/mdatp_onboard.json'], # Ensure the script is copied before running the installer
151
+
}
152
152
153
-
}
154
-
```
153
+
}
154
+
```
155
155
> [!NOTE]
156
156
> The installer script also supports other parameters such as channel, realtime protection, version, etc. To select from the list of available options, check help.
0 commit comments