From 5692dbc6d7cfd912af1c51d89c3d2982fb1de482 Mon Sep 17 00:00:00 2001 From: Frantisek Sumsal Date: Wed, 3 Jul 2019 12:20:49 +0200 Subject: [PATCH] Add an ansible playbook for RHEL 8 test dependencies --- rhel8.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 rhel8.yml diff --git a/rhel8.yml b/rhel8.yml new file mode 100644 index 0000000..8409b5d --- /dev/null +++ b/rhel8.yml @@ -0,0 +1,14 @@ +--- + +# vim: sw=2 ts=2 et + +- hosts: localhost + tasks: + - name: Install necessary test dependencies for RHEL 8 + dnf: + state: present + name: + - coreutils + - systemd + - systemd-container + - util-linux