-update sipp version

This commit is contained in:
Pi
2020-03-06 11:29:56 -05:00
parent 390c0e59b7
commit c469ba31a4
3 changed files with 6 additions and 6 deletions

View File

@@ -1,5 +1,5 @@
---
- hosts: all,!ansible-hosts
- hosts: all,!ansible-host
gather_facts: no
tasks:
- name: reboot

View File

@@ -2,19 +2,19 @@
- name: download sipp source
get_url:
url: "https://github.com/SIPp/sipp/releases/download/v3.6.0/sipp-3.6.0.tar.gz"
dest: "/home/pi/sipp-3.5.2.tar.gz"
dest: "/home/pi/sipp-3.6.0.tar.gz"
register: sipp_source
tags: sipp
- name: Unpacking SIPP
unarchive:
copy: no
dest: /home/pi/
src: "/home/pi/sipp-3.5.2.tar.gz"
src: "/home/pi/sipp-3.6.0.tar.gz"
when: sipp_source.changed
register: sipp_source_unpack
tags: sipp
- name: move sipp directory
command: 'mv sipp-3.5.2 sipp'
command: 'mv sipp-3.6.0 sipp'
when: sipp_source_unpack is changed
register: sipp_move_directory
tags: sipp

View File

@@ -1,4 +1,4 @@
---
- hosts: tcgui
- hosts: update
roles:
- tcgui
- update