diff --git a/README.md b/README.md index 4b77a1c..96ef728 100644 --- a/README.md +++ b/README.md @@ -1,14 +1,13 @@ # Ansible HAproxy (OpenStack ready) -[![Build Status](https://travis-ci.com/uoi-io/ansible-haproxy.svg?branch=master)](https://travis-ci.com/uoi-io/ansible-haproxy) [![Ansible Galaxy](https://img.shields.io/badge/galaxy-uoi.haproxy-green.svg?style=flat)](https://galaxy.ansible.com/uoi-io/haproxy/) +[![CI](https://github.com/uoi-io/ansible-haproxy/actions/workflows/ci.yml/badge.svg)](https://github.com/uoi-io/ansible-haproxy/actions/workflows/ci.yml) [![Ansible Galaxy](https://img.shields.io/badge/galaxy-uoi.haproxy-green.svg?style=flat)](https://galaxy.ansible.com/uoi-io/haproxy/) This role provides support for the installation of HAproxy on current distributions: -- CentOS **7.x** / **8.x** -- RedHat **7.x** / Not tested on **8.x** but should work -- Fedora **33** / **34** -- Debian **9.x** / **10.x** / **11.x** -- Ubuntu **18.04** / **20.04** +- Rocky Linux **8** / **9** +- Fedora **37** / **38** / **39** +- Debian **10** / **11** +- Ubuntu **18.04** / **20.04** / **22.04** The role allows you to configure multiple sections of HAproxy: diff --git a/molecule/default/Dockerfile.j2 b/molecule/default/Dockerfile.j2 index 96ce967..b0a5f43 100644 --- a/molecule/default/Dockerfile.j2 +++ b/molecule/default/Dockerfile.j2 @@ -5,5 +5,5 @@ FROM {{ item.image }} {% endif %} RUN if [ $(command -v apt-get) ]; then apt-get update && apt-get install --no-install-recommends -y net-tools procps python3 python3-apt && apt-get clean; \ - elif [ $(command -v dnf) ]; then dnf install -y net-tools procps-ng && dnf clean all; \ - elif [ $(command -v yum) ]; then yum install -y net-tools procps-ng && yum clean all; fi + elif [ $(command -v dnf) ]; then dnf install -y net-tools procps-ng systemd-udev && dnf clean all; \ + elif [ $(command -v yum) ]; then yum install -y net-tools procps-ng systemd-udev && yum clean all; fi