File: install-test-dependencies.yml

package info (click to toggle)
libblockdev 3.4.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,140 kB
  • sloc: ansic: 25,226; python: 11,877; makefile: 684; sh: 503; xml: 146
file content (15 lines) | stat: -rw-r--r-- 564 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# This is a simple ansible playbook for installing packages needed by the
# libblockdev test suite.
# You can do this by using 'make install-requires' or manually using
# 'ansible-playbook -K -i "localhost," -c local install-test-dependencies.yml'
# Currently only Fedora, CentOS and Debian/Ubuntu are supported by this playbook.

---
- hosts: all
  become: true
  vars:
    test_dependencies: true  # whether to install test dependencies or not

  tasks:
  - name: Include tasks from libblockdev-tasks.yml
    ansible.builtin.include_tasks: libblockdev-tasks.yml