You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
425 B
13 lines
425 B
- name: Basename of an HTTP url
|
|
gather_facts: no
|
|
hosts: localhost
|
|
tasks:
|
|
- block:
|
|
- debug:
|
|
var: output
|
|
- assert:
|
|
that:
|
|
- output == "fedora-coreos-35.20211203.3.0-qemu.x86_64.qcow2.xz"
|
|
vars:
|
|
output: "{{ input|basename }}"
|
|
input: https://builds.coreos.fedoraproject.org/prod/streams/stable/builds/35.20211203.3.0/x86_64/fedora-coreos-35.20211203.3.0-qemu.x86_64.qcow2.xz
|
|
|