--- | |
# netbox molecule/default/prepare.yml | |
# | |
# SPDX-FileCopyrightText: © 2020 Open Networking Foundation <support@opennetworking.org> | |
# SPDX-License-Identifier: Apache-2.0 | |
- name: Prepare for enodebd by installing dependency roles | |
hosts: all | |
pre_tasks: | |
- name: Install dependency packages | |
apt: | |
name: | |
- curl | |
- git | |
- unzip | |
- python3 | |
- python3-pip | |
- python3-venv | |
state: "present" | |
update_cache: true |