@@ -22,24 +22,24 @@ export const StandaloneInstructions = ({
22
22
const { windows : windowsDownloadSourceProxyArgs , curl : curlDownloadSourceProxyArgs } =
23
23
getDownloadSourceProxyArgs ( downloadSourceProxy ) ;
24
24
25
- const linuxDebCommand = `curl -L -O ${ downloadBaseUrl } /downloads/ beats/elastic-agent/elastic-agent-${ agentVersion } -amd64.deb ${ curlDownloadSourceProxyArgs }
25
+ const linuxDebCommand = `curl -L -O ${ downloadBaseUrl } /beats/elastic-agent/elastic-agent-${ agentVersion } -amd64.deb ${ curlDownloadSourceProxyArgs }
26
26
sudo dpkg -i elastic-agent-${ agentVersion } -amd64.deb \nsudo systemctl enable elastic-agent \nsudo systemctl start elastic-agent` ;
27
27
28
- const linuxRpmCommand = `curl -L -O ${ downloadBaseUrl } /downloads/ beats/elastic-agent/elastic-agent-${ agentVersion } -x86_64.rpm ${ curlDownloadSourceProxyArgs }
28
+ const linuxRpmCommand = `curl -L -O ${ downloadBaseUrl } /beats/elastic-agent/elastic-agent-${ agentVersion } -x86_64.rpm ${ curlDownloadSourceProxyArgs }
29
29
sudo rpm -vi elastic-agent-${ agentVersion } -x86_64.rpm \nsudo systemctl enable elastic-agent \nsudo systemctl start elastic-agent` ;
30
30
31
- const linuxCommand = `curl -L -O ${ downloadBaseUrl } /downloads/ beats/elastic-agent/elastic-agent-${ agentVersion } -linux-x86_64.tar.gz ${ curlDownloadSourceProxyArgs }
31
+ const linuxCommand = `curl -L -O ${ downloadBaseUrl } /beats/elastic-agent/elastic-agent-${ agentVersion } -linux-x86_64.tar.gz ${ curlDownloadSourceProxyArgs }
32
32
tar xzvf elastic-agent-${ agentVersion } -linux-x86_64.tar.gz
33
33
cd elastic-agent-${ agentVersion } -linux-x86_64
34
34
sudo ./elastic-agent install` ;
35
35
36
- const macCommand = `curl -L -O ${ downloadBaseUrl } /downloads/ beats/elastic-agent/elastic-agent-${ agentVersion } -darwin-aarch64.tar.gz ${ curlDownloadSourceProxyArgs }
36
+ const macCommand = `curl -L -O ${ downloadBaseUrl } /beats/elastic-agent/elastic-agent-${ agentVersion } -darwin-aarch64.tar.gz ${ curlDownloadSourceProxyArgs }
37
37
tar xzvf elastic-agent-${ agentVersion } -darwin-aarch64.tar.gz
38
38
cd elastic-agent-${ agentVersion } -darwin-aarch64
39
39
sudo ./elastic-agent install` ;
40
40
41
41
const windowsCommand = `$ProgressPreference = 'SilentlyContinue'
42
- Invoke-WebRequest -Uri ${ downloadBaseUrl } /downloads/ beats/elastic-agent/elastic-agent-${ agentVersion } -windows-x86_64.zip -OutFile elastic-agent-${ agentVersion } -windows-x86_64.zip ${ windowsDownloadSourceProxyArgs }
42
+ Invoke-WebRequest -Uri ${ downloadBaseUrl } /beats/elastic-agent/elastic-agent-${ agentVersion } -windows-x86_64.zip -OutFile elastic-agent-${ agentVersion } -windows-x86_64.zip ${ windowsDownloadSourceProxyArgs }
43
43
Expand-Archive .\elastic-agent-${ agentVersion } -windows-x86_64.zip -DestinationPath .
44
44
cd elastic-agent-${ agentVersion } -windows-x86_64
45
45
.\\elastic-agent.exe install` ;
0 commit comments