Browse Source

fix version/sha references in algo/mitm packer roles

tags/v1.1.4
Jonathan Cobb 4 years ago
parent
commit
4e07d3ef36
2 changed files with 4 additions and 4 deletions
  1. +2
    -2
      bubble-server/src/main/resources/packer/roles/algo/tasks/main.yml
  2. +2
    -2
      bubble-server/src/main/resources/packer/roles/mitmproxy/tasks/main.yml

+ 2
- 2
bubble-server/src/main/resources/packer/roles/algo/tasks/main.yml View File

@@ -11,9 +11,9 @@


- name: Download algo dist file - name: Download algo dist file
get_url: get_url:
url: https://jenkins.bubblev.org/public/releases/algo/latest/algo.zip
url: https://jenkins.bubblev.org/public/releases/algo/{{ algo_version }}/algo.zip
dest: /tmp/algo.zip dest: /tmp/algo.zip
checksum: sha256:{{ algo_sha256 }}
checksum: sha256:{{ algo_sha }}


- name: Unzip algo master.zip - name: Unzip algo master.zip
unarchive: unarchive:


+ 2
- 2
bubble-server/src/main/resources/packer/roles/mitmproxy/tasks/main.yml View File

@@ -39,9 +39,9 @@


- name: Download mitmproxy dist file - name: Download mitmproxy dist file
get_url: get_url:
url: https://jenkins.bubblev.org/public/releases/mitmproxy/latest/mitmproxy.zip
url: https://jenkins.bubblev.org/public/releases/mitmproxy/{{ mitmproxy_version }}/mitmproxy.zip
dest: /tmp/mitmproxy.zip dest: /tmp/mitmproxy.zip
checksum: sha256:{{ mitmproxy_sha256 }}
checksum: sha256:{{ mitmproxy_sha }}


- name: Unzip mitmproxy.zip - name: Unzip mitmproxy.zip
unarchive: unarchive:


Loading…
Cancel
Save