problematic pip installs, chose docker. added manticore and mythril
This commit is contained in:
parent
aae335cab2
commit
520fb18981
6
ansible/roles/manticore/tasks/install-via-docker.yml
Normal file
6
ansible/roles/manticore/tasks/install-via-docker.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
- name: Create manticore
|
||||
community.docker.docker_container:
|
||||
name: manticore
|
||||
image: trailofbits/manticore:0.3.7
|
||||
state: started
|
||||
restart: true
|
4
ansible/roles/manticore/tasks/install-via-pip.yml
Normal file
4
ansible/roles/manticore/tasks/install-via-pip.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
- name: Install manticore python package
|
||||
ansible.builtin.pip:
|
||||
name: manticore==0.3.7
|
||||
state: present
|
6
ansible/roles/manticore/tasks/main.yml
Normal file
6
ansible/roles/manticore/tasks/main.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
---
|
||||
#- import_tasks: install-via-pip.yml
|
||||
# tags: install-via-pip
|
||||
|
||||
- import_tasks: install-via-docker.yml
|
||||
tags: install-via-docker
|
6
ansible/roles/mythril/tasks/install-via-docker.yml
Normal file
6
ansible/roles/mythril/tasks/install-via-docker.yml
Normal file
|
@ -0,0 +1,6 @@
|
|||
- name: Create mythril
|
||||
community.docker.docker_container:
|
||||
name: manticore
|
||||
image: mythril/myth:0.23.1
|
||||
state: started
|
||||
restart: true
|
4
ansible/roles/mythril/tasks/install-via-pip.yml
Normal file
4
ansible/roles/mythril/tasks/install-via-pip.yml
Normal file
|
@ -0,0 +1,4 @@
|
|||
- name: Install mythril python package
|
||||
ansible.builtin.pip:
|
||||
name: mythril==0.23.1
|
||||
state: present
|
9
ansible/roles/mythril/tasks/main.yml
Normal file
9
ansible/roles/mythril/tasks/main.yml
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
#- import_tasks: install-via-pip.yml
|
||||
# tags: install-via-pip
|
||||
# UNTESTED
|
||||
|
||||
|
||||
- import_tasks: install-via-docker.yml
|
||||
tags: install-via-docker
|
||||
|
Loading…
Reference in a new issue