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.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=e6c0979ca15fb91a1e04c8bf8808e51f6bfca243;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 3a276f3..1b30777 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