diff options
author | zsdc <taras@vyos.io> | 2021-01-23 20:22:31 +0200 |
---|---|---|
committer | zsdc <taras@vyos.io> | 2021-01-23 20:22:31 +0200 |
commit | 430392dc3e8385567f97f56c8107130968709227 (patch) | |
tree | 43efd26359ebd9bbc107ef7e0591e14392300508 /group_vars | |
parent | 5a4bb43ad7ecdfa31f6fc2d2ddec123ac57144bd (diff) | |
download | vyos-vm-images-430392dc3e8385567f97f56c8107130968709227.tar.gz vyos-vm-images-430392dc3e8385567f97f56c8107130968709227.zip |
Fixed ISO download task
The current listing of the https://downloads.vyos.io/?dir=rolling/current/amd64 is not compatible with the old parser. Also, now it is not necessary to search for the latest image anymore - it has always the same static URL.
Therefore, the download page parser was removed and the download task was modified to download an ISO from a permanent URL.
Diffstat (limited to 'group_vars')
-rw-r--r-- | group_vars/all.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/group_vars/all.yml b/group_vars/all.yml index 41ec804..bd872b5 100644 --- a/group_vars/all.yml +++ b/group_vars/all.yml @@ -1,6 +1,6 @@ ansible_host_key_checking: False -vyos_iso_url: "" +vyos_iso_url: https://downloads.vyos.io/rolling/current/amd64/vyos-rolling-latest.iso vyos_iso_local: "{{ iso_local | default('/tmp/vyos.iso') }}" vyos_key_url: https://downloads.vyos.io/vyos-release.gpg vyos_key_local: /tmp/vyos-release.gpg |