scVENUS / PeekabooAV-Installer

This repository provides scripts and configuration files to install, update and test a Peekaboo installation
GNU General Public License v3.0
7 stars 9 forks source link

Install and upgrade Peekaboo using pip #26

Closed michaelweiser closed 5 years ago

michaelweiser commented 5 years ago

The pip module of ansible can be told to install the lastest version of Peekaboo using "state: latest".

Since we want to install the version provided by our submodule, we have to "trick" pip into installing from there by changing into it and installing ".", i.e. from the current local directory.

Incidentally, pip will also install all dependencies named in requirements.txt so that the separate dependency installation further up in the playbook becomes redundant.

Closes #25.