Skip to content

Commit

Permalink
revert burpui version to use to 0.6.1 until upgrade burp see #15
Browse files Browse the repository at this point in the history
  • Loading branch information
pablodav committed Mar 28, 2019
1 parent 068d98d commit a2538e2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
1.7.0:

* update burpui-agent to 0.6.5 (Fix: sync pkgs requirements with burp-ui's `#300 <https://git.ziirish.me/ziirish/burp-ui/issues/300>`__)
* keep burpui-agent to 0.6.1 as: can't migrate to 0.6.5 until upgrade burp to 2.2.12+
* Update python3 to python3.6 on Redhat/Centos
* Move default installation to python3
* Support bui-celery to systemd
Expand Down
2 changes: 1 addition & 1 deletion defaults/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ burpui_version_dev: master
burpui_use_dev: False

burpui_pip_burpui: "burp-ui"
burpui_version: 0.6.5
burpui_version: 0.6.1 # can't migrate to 0.6.5 until upgrade burp to 2.2.12+
python_pip_executable: "pip3" # options pip3 / pip2

burpui_pip_packages:
Expand Down
10 changes: 10 additions & 0 deletions tasks/requirements.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,3 +24,13 @@
package:
name: "{{ burpui_packages| join(',') }}"
state: present

- name: register /usr/local/sbin/burp path
stat:
path: "/usr/local/sbin/burp"
register: burp_local_sbin_path

- name: change burp path var burpui_backend_burpbin
set_fact:
burpui_backend_burpbin: /usr/local/sbin/burp
when: burp_local_sbin_path.stat.exists

0 comments on commit a2538e2

Please sign in to comment.