mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 09:48:58 -04:00
Co-authored-by: Gabriel Landau <42078554+gabriellandau@users.noreply.github.com>
(cherry picked from commit 9ebb129d7f
)
Co-authored-by: Kevin Logan <56395104+kevinlog@users.noreply.github.com>
This commit is contained in:
parent
a6c0371b75
commit
731053c017
2 changed files with 6 additions and 4 deletions
|
@ -26,8 +26,9 @@ tar xzvf elastic-agent-${kibanaVersion}-darwin-x86_64.tar.gz
|
|||
cd elastic-agent-${kibanaVersion}-darwin-x86_64
|
||||
sudo ./elastic-agent install ${enrollArgs}`;
|
||||
|
||||
const windowsCommand = `wget https://artifacts.elastic.co/downloads/beats/elastic-agent/elastic-agent-${kibanaVersion}-windows-x86_64.zip -OutFile elastic-agent-${kibanaVersion}-windows-x86_64.zip
|
||||
Expand-Archive .\\elastic-agent-${kibanaVersion}-windows-x86_64.zip
|
||||
const windowsCommand = `$ProgressPreference = 'SilentlyContinue'
|
||||
wget https://artifacts.elastic.co/downloads/beats/elastic-agent/elastic-agent-${kibanaVersion}-windows-x86_64.zip -OutFile elastic-agent-${kibanaVersion}-windows-x86_64.zip
|
||||
Expand-Archive .\\elastic-agent-${kibanaVersion}-windows-x86_64.zip -DestinationPath .
|
||||
cd elastic-agent-${kibanaVersion}-windows-x86_64
|
||||
.\\elastic-agent.exe install ${enrollArgs}`;
|
||||
|
||||
|
|
|
@ -23,8 +23,9 @@ tar xzvf elastic-agent-${kibanaVersion}-darwin-x86_64.tar.gz
|
|||
cd elastic-agent-${kibanaVersion}-darwin-x86_64
|
||||
sudo ./elastic-agent install`;
|
||||
|
||||
const STANDALONE_RUN_INSTRUCTIONS_WINDOWS = `wget https://artifacts.elastic.co/downloads/beats/elastic-agent/elastic-agent-${kibanaVersion}-windows-x86_64.zip -OutFile elastic-agent-${kibanaVersion}-windows-x86_64.zip
|
||||
Expand-Archive .\elastic-agent-${kibanaVersion}-windows-x86_64.zip
|
||||
const STANDALONE_RUN_INSTRUCTIONS_WINDOWS = `$ProgressPreference = 'SilentlyContinue'
|
||||
wget https://artifacts.elastic.co/downloads/beats/elastic-agent/elastic-agent-${kibanaVersion}-windows-x86_64.zip -OutFile elastic-agent-${kibanaVersion}-windows-x86_64.zip
|
||||
Expand-Archive .\elastic-agent-${kibanaVersion}-windows-x86_64.zip -DestinationPath .
|
||||
cd elastic-agent-${kibanaVersion}-windows-x86_64
|
||||
.\\elastic-agent.exe install`;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue