#!/usr/bin/env ansible-playbook
---

- import_playbook: includes/python.yml
- import_playbook: includes/check_docker.yml
- import_playbook: includes/conf.yml

- name: DEPLOY BENCHMARK SERVER
  hosts:
    - bench_server
  tags:
    - bench_server
  roles:
    - bench-server

...