-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
docs: install, upgrade and uninstall doc added to /ref
- Loading branch information
1 parent
33acaa3
commit 0372c9d
Showing
3 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,31 @@ | ||
# Installation | ||
|
||
## Install the Agent on Linux | ||
|
||
- DEB | ||
|
||
```bash | ||
dpkg -i wazuh-agent_5.0.0.deb | ||
``` | ||
|
||
- RPM | ||
|
||
```bash | ||
sudo rpm -i wazuh-agent_5.0.0.rpm | ||
``` | ||
|
||
## Install the Agent on macOS | ||
|
||
- PKG | ||
|
||
```bash | ||
sudo installer -pkg wazuh-agent_5.0.0.pkg -target / | ||
``` | ||
|
||
## Install the Agent on Windows | ||
|
||
- MSI | ||
|
||
```bash | ||
.\wazuh-agent_5.0.0.msi /q | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,27 @@ | ||
# Uninstall | ||
|
||
## Uninstall the Agent on Linux | ||
|
||
- DEB | ||
|
||
```bash | ||
sudo dpkg -r wazuh-agent | ||
``` | ||
|
||
- RPM | ||
|
||
```bash | ||
sudo rpm -e wazuh-agent | ||
``` | ||
|
||
## Uninstall the Agent on macOS | ||
|
||
- PKG | ||
<!-- To do --> | ||
|
||
## Uninstall the Agent on Windows | ||
|
||
- MSI | ||
```powershell | ||
msiexec /x '.\wazuh-agent_5.0.0.msi' /l*v uninstall.log | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,31 @@ | ||
# Upgrade | ||
|
||
## Upgrade the Agent on Linux | ||
|
||
- DEB | ||
|
||
```bash | ||
dpkg -i wazuh-agent_5.0.0.deb | ||
``` | ||
|
||
- RPM | ||
|
||
```bash | ||
sudo rpm -i wazuh-agent_5.0.0.rpm | ||
``` | ||
|
||
## Upgrade the Agent on macOS | ||
|
||
- PKG | ||
|
||
```bash | ||
sudo installer -pkg wazuh-agent_5.0.0.pkg -target / | ||
``` | ||
|
||
## Upgrade the Agent on Windows | ||
|
||
- MSI | ||
|
||
```bash | ||
.\wazuh-agent_5.0.0.msi /q | ||
``` |