From aae335cab22f9b376ac8d98049c3636df5c212aa Mon Sep 17 00:00:00 2001 From: Bryan Black Date: Fri, 28 Oct 2022 04:03:50 -0700 Subject: [PATCH] fixes --- ansible/plays/evm-tools.yml | 2 ++ ansible/roles/brownie/tasks/install-python3venv.yml | 4 ++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/ansible/plays/evm-tools.yml b/ansible/plays/evm-tools.yml index 5fb6272..9989d0a 100644 --- a/ansible/plays/evm-tools.yml +++ b/ansible/plays/evm-tools.yml @@ -14,5 +14,7 @@ - solc - solc-select - brownie + - manticore + - mythril - ganache - remix diff --git a/ansible/roles/brownie/tasks/install-python3venv.yml b/ansible/roles/brownie/tasks/install-python3venv.yml index c1626b6..a700db1 100644 --- a/ansible/roles/brownie/tasks/install-python3venv.yml +++ b/ansible/roles/brownie/tasks/install-python3venv.yml @@ -1,4 +1,4 @@ -- name: Install python3.10-venv +- name: Install python3-venv become_user: root become: true apt: @@ -6,4 +6,4 @@ update_cache: yes cache_valid_time: 604800 pkg: - - python3.10-venv + - python3-venv