From: Kyr Shatskyy Date: Fri, 15 Mar 2019 00:09:35 +0000 (+0100) Subject: teuthology: make sure beanstalkd is running X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=refs%2Fpull%2F450%2Fhead;p=ceph-cm-ansible.git teuthology: make sure beanstalkd is running The beanstalkd service should be running before any try to start workers up Signed-off-by: Kyr Shatskyy --- diff --git a/roles/teuthology/tasks/main.yml b/roles/teuthology/tasks/main.yml index 3a276f3d..1b30777e 100644 --- a/roles/teuthology/tasks/main.yml +++ b/roles/teuthology/tasks/main.yml @@ -42,3 +42,9 @@ - import_tasks: setup_log_access.yml tags: - logs + +- name: Enable and start beanstalkd + service: + name: beanstalkd + state: started + enabled: yes