diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-10-17 17:15:44 +0200 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2017-10-17 22:13:02 +0200 |
commit | 8b490b817a83836afd66162e2b507c8d320c73cd (patch) | |
tree | e1446cba006ee17d4188212849fbe5527e6d549e | |
parent | 8ceb546742c5dcd9c933be8066107b83975fca26 (diff) |
Update doc links for xds-agent installation
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
-rw-r--r-- | webapp/src/app/services/config.service.ts | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/webapp/src/app/services/config.service.ts b/webapp/src/app/services/config.service.ts index 7af5fc9..6cab73c 100644 --- a/webapp/src/app/services/config.service.ts +++ b/webapp/src/app/services/config.service.ts @@ -189,8 +189,9 @@ export class ConfigService { }, error => { if (error.indexOf("XDS local Agent not responding") !== -1) { - let url_OS_Linux = "https://en.opensuse.org/LinuxAutomotive#Installation_AGL_XDS"; - let url_OS_Other = "https://github.com/iotbzh/xds-agent#how-to-install-on-other-platform"; + let rootUrl = "http://docs.automotivelinux.org/docs/devguides/en/dev/reference/"; + let url_OS_Linux = rootUrl + "xds/part-1/1_install-client.html#install-packages-for-debian-distro-type"; + let url_OS_Other = rootUrl + "xds/part-1/1_install-client.html#install-for-other-platforms-windows--macos"; let msg = `<span><strong>` + error + `<br></strong> You may need to install and execute XDS-Agent: <br> On Linux machine <a href="` + url_OS_Linux + `" target="_blank"><span |