File: install-test-dependencies.yml

package info (click to toggle)
libbytesize 2.12-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 788 kB
  • sloc: python: 1,854; ansic: 994; sh: 666; makefile: 258
file content (13 lines) | stat: -rw-r--r-- 477 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
# This is a simple ansible playbook for installing packages needed by the
# libbytesize 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 and Debian/Ubuntu are supported by this playbook.

---
- hosts: all
  become: true

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