No description
Find a file
semantic-release-bot 3be73eba32 chore(release): 1.9.0 [skip ci]
# [1.9.0](https://github.com/de-it-krachten/ansible-role-munge/compare/v1.8.0...v1.9.0) (2026-07-26)

### Features

* Add support for ansible-core 2.20+ ([eb1edfe](eb1edfe64f))
* Added support for Fedora 44 ([134dd63](134dd63629))
* Drop support for Fedora 42 ([26be7a0](26be7a0e0a))
2026-07-26 19:56:03 +00:00
.github/workflows Update CI 2026-07-23 14:50:00 +02:00
defaults fix: Fix support for (Open)SUSE 2023-08-16 00:28:11 +02:00
handlers feat: Move to FQCN 2022-10-08 14:10:39 +02:00
meta Update CI 2026-06-07 17:03:44 +02:00
molecule/default Update CI 2026-07-25 17:30:09 +02:00
tasks feat: Add support for ansible-core 2.20+ 2026-06-07 16:25:17 +02:00
tests Implement molecule 2021-11-28 23:15:16 +01:00
.ansible-lint Fix CI 2026-04-27 13:11:59 +02:00
.cicd Update CI 2026-06-09 11:08:48 +02:00
.cicd.overwrite Update CI 2026-03-14 19:45:25 +01:00
.collections feat: Move to FQCN 2022-10-08 14:10:39 +02:00
.gitignore feat: Update supported platforms & CI 2024-12-29 02:22:24 +01:00
.molecule Activate github actions 2021-12-04 14:47:38 +01:00
.releaserc.yml Update CI 2026-03-06 22:52:26 +01:00
.roles feat: Update CI to latest standards 2022-10-08 23:12:48 +02:00
.yamllint feat: Update supported platforms & CI 2024-12-29 02:22:24 +01:00
CHANGELOG.md chore(release): 1.9.0 [skip ci] 2026-07-26 19:56:03 +00:00
README.md Update CI 2026-06-07 17:03:44 +02:00

CI

ansible-role-munge

Install & configures munge See https://dun.github.io/munge/ for more information

Dependencies

Roles

None

Collections

None

Platforms

Supported platforms

  • Red Hat Enterprise Linux 81
  • Red Hat Enterprise Linux 91
  • Red Hat Enterprise Linux 101
  • RockyLinux 8
  • RockyLinux 9
  • RockyLinux 10
  • OracleLinux 8
  • OracleLinux 9
  • OracleLinux 10
  • AlmaLinux 8
  • AlmaLinux 9
  • AlmaLinux 10
  • Debian 11 (Bullseye)
  • Debian 12 (Bookworm)
  • Debian 13 (Trixie)
  • Ubuntu 20.04 LTS
  • Ubuntu 22.04 LTS
  • Ubuntu 24.04 LTS
  • Ubuntu 26.04 LTS
  • Fedora 43
  • Fedora 441

Note: 1 : no automated testing is performed on these platforms

Role Variables

defaults/main.yml


# munge user & group
munge_user: munge
munge_group: munge

# munge packages by platform
munge_packages:
  RedHat:
    - munge
    - munge-libs
    - munge-devel
  Debian:
    - munge
    - libmunge-dev
  Suse:
    - munge
    - libmunge2

# munge config + log directories
munge_dirs:
  - { path: /etc/munge, mode: '0755' }
  - { path: /var/log/munge, mode: '0755' }
  - { path: /var/run/munge, mode: '0755' }

# munge socket
munge_socket: /var/run/munge/munge.socket.2
munge_socket_owner: "{{ munge_user }}"
munge_socket_group: "{{ munge_group }}"
munge_socket_mode: "0660"

Example Playbook

molecule/default/converge.yml


- name: sample playbook for role 'munge'
  hosts: all
  become: 'yes'
  vars:
    molecule_driver: '{{ lookup(''env'', ''MOLECULE_DRIVER_NAME'') }}'
    munge_key: tests/munge.key
  tasks:
    - name: Include role 'munge'
      ansible.builtin.include_role:
        name: munge