File: path.md

package info (click to toggle)
eos-downloader 0.14.0-2
  • links: PTS, VCS
  • area: contrib
  • in suites: sid
  • size: 5,952 kB
  • sloc: xml: 18,784; python: 5,412; makefile: 82; javascript: 9
file content (38 lines) | stat: -rw-r--r-- 1,525 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Download any arista package

This command gives an option for advanced users to download any packages available on arista website and using the standard authentication mechanism.

!!! warning
    This command is for advanced user only

```bash
# Get a package from arista server
ardl get path -s "/support/path/to/docker/image/cEOS-lab-4.32.3M.tar.xz"

# Get a package from arista server and import into your docker engine
ardl get path -s "/support/path/to/docker/image/cEOS-lab-4.32.3M.tar.xz" --import-docker

# Get a package from arista server and import into your docker engine with specific image and version
ardl get path -s "/support/path/to/docker/image/cEOS-lab-4.32.3M.tar.xz" --import-docker --docker-image arista/myceos --docker-version 4.32.3M
```

## ardl get path options

```bash
$ ardl get path --help
Usage: ardl get path [OPTIONS]

  Download image from Arista server using direct path.

Options:
  -s, --source TEXT   Image path to download from Arista Website
  -o, --output PATH   Path to save downloaded package  [env var:
                      ARISTA_GET_PATH_OUTPUT; default: .]
  --import-docker     Import docker image to local docker  [env var:
                      ARISTA_GET_PATH_IMPORT_DOCKER]
  --docker-name TEXT  Docker image name  [env var:
                      ARISTA_GET_PATH_DOCKER_NAME; default: arista/ceos:raw]
  --docker-tag TEXT   Docker image tag  [env var: ARISTA_GET_PATH_DOCKER_TAG;
                      default: dev]
  --help              Show this message and exit.
```