Commit bef062d3 authored by Joanne Hugé's avatar Joanne Hugé

playbook/ors: handle multiple binaries with identical versions

if someone uploads two amarisoft binaries with same timestamp and
version then we should at least be able to manually put the right
version and timestamp on the ORS and not have the playbook fail
parent 89ba7d0f
Pipeline #38542 failed with stage
in 0 seconds
...@@ -113,12 +113,12 @@ ...@@ -113,12 +113,12 @@
when: certificate.stat.exists == True when: certificate.stat.exists == True
- name: Get new amarisoft version if available - name: Get new amarisoft version if available
shell: "networkcache-download -c {{ amarisoft_dir }}/shacache.cfg -k key-private:amarisoft 'cn==\"{{ cn }}\"' 'version<=\"{{ license_expiration.stdout }}\"' 'timestamp>=\"0\"' 'version>>\"0\"' 'timestamp>>\"0\"' --list | grep version | cut -d\\\" -f4" shell: "networkcache-download -c {{ amarisoft_dir }}/shacache.cfg -k key-private:amarisoft 'cn==\"{{ cn }}\"' 'version<=\"{{ license_expiration.stdout }}\"' 'timestamp>=\"0\"' 'version>>\"0\"' 'timestamp>>\"0\"' --list | grep version | head -n1 | cut -d\\\" -f4"
register: new_version register: new_version
when: certificate.stat.exists == True when: certificate.stat.exists == True
- name: Get new amarisoft timestamp if available - name: Get new amarisoft timestamp if available
shell: "networkcache-download -c {{ amarisoft_dir }}/shacache.cfg -k key-private:amarisoft 'cn==\"{{ cn }}\"' 'version<=\"{{ license_expiration.stdout }}\"' 'timestamp>=\"0\"' 'version>>\"0\"' 'timestamp>>\"0\"' --list | grep timestamp | cut -d\\\" -f4" shell: "networkcache-download -c {{ amarisoft_dir }}/shacache.cfg -k key-private:amarisoft 'cn==\"{{ cn }}\"' 'version<=\"{{ license_expiration.stdout }}\"' 'timestamp>=\"0\"' 'version>>\"0\"' 'timestamp>>\"0\"' --list | grep timestamp | head -n1 | cut -d\\\" -f4"
register: new_timestamp register: new_timestamp
when: certificate.stat.exists == True when: certificate.stat.exists == True
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment