mirror of https://github.com/ceph/ceph-ansible.git
iscsigw: install python-requests
Typical error at rbd-target-api startup: ``` Sep 25 12:12:29 iscsi-gw0 rbd-target-api[9959]: Traceback (most recent call last): Sep 25 12:12:29 iscsi-gw0 rbd-target-api[9959]: File "/usr/bin/rbd-target-api", line 39, in <module> Sep 25 12:12:29 iscsi-gw0 rbd-target-api[9959]: from gwcli.utils import (APIRequest, valid_gateway, valid_client, Sep 25 12:12:29 iscsi-gw0 rbd-target-api[9959]: File "/usr/lib/python2.7/site-packages/gwcli/utils.py", line 1, in <module> Sep 25 12:12:29 iscsi-gw0 rbd-target-api[9959]: import requests Sep 25 12:12:29 iscsi-gw0 rbd-target-api[9959]: ImportError: No module named requests ``` Signed-off-by: Guillaume Abrioux <gabrioux@redhat.com>pull/4450/head
parent
006df148d0
commit
167737dd3d
|
@ -63,7 +63,9 @@
|
||||||
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
state: "{{ (upgrade_ceph_packages|bool) | ternary('latest','present') }}"
|
||||||
register: result
|
register: result
|
||||||
until: result is succeeded
|
until: result is succeeded
|
||||||
with_items: "{{ ceph_iscsi_pkgs }}"
|
with_items:
|
||||||
|
- "{{ ceph_iscsi_pkgs }}"
|
||||||
|
- python-requests
|
||||||
|
|
||||||
- name: check the status of the target.service override
|
- name: check the status of the target.service override
|
||||||
stat:
|
stat:
|
||||||
|
|
Loading…
Reference in New Issue