Skip to content

Commit

Permalink
Merge pull request #1726 from qux-bbb/master
Browse files Browse the repository at this point in the history
Fix poetry_libvirt_installer.sh renaming
  • Loading branch information
doomedraven authored Sep 6, 2023
2 parents 09a4d35 + 30be584 commit d71eee5
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions docs/book/src/usage/start.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,9 +48,9 @@ If you used poetry to install dependencies, you should launch cape with the foll

$ sudo -u cape poetry run python3 cuckoo.py

If you get any dependency-related error, make sure you execute the **extra/poetry_libvirt_installer.sh** script.::
If you get any dependency-related error, make sure you execute the **extra/libvirt_installer.sh** script.::

$ sudo -u cape poetry run extra/poetry_libvirt_installer.sh
$ sudo -u cape poetry run extra/libvirt_installer.sh

Troubleshooting
===============
Expand Down
2 changes: 1 addition & 1 deletion installer/kvm-qemu.sh
Original file line number Diff line number Diff line change
Expand Up @@ -567,7 +567,7 @@ EOH
pip3 install .
cd ..
# Remove the $libvirt_version directory to permission errors when runing
# cd /opt/CAPEv2/ ; sudo -u cape poetry run extra/poetry_libvirt_installer.sh later
# cd /opt/CAPEv2/ ; sudo -u cape poetry run extra/libvirt_installer.sh later
rm -r libvirt-python-$libvirt_version
if [ "$OS" = "Linux" ]; then
# https://github.com/libvirt/libvirt/commit/e94979e901517af9fdde358d7b7c92cc055dd50c
Expand Down
2 changes: 1 addition & 1 deletion web/guac/views.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
try:
import libvirt
except ImportError:
print("Missed python-libvirt. Use extra/poetry_libvirt_installer.sh")
print("Missed python-libvirt. Use extra/libvirt_installer.sh")


def index(request, task_id, session_data):
Expand Down

0 comments on commit d71eee5

Please sign in to comment.