No description
Find a file
2026-05-01 19:48:47 +02:00
.github/workflows Fix CI 2026-04-27 13:11:59 +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-03-14 19:45:25 +01:00
molecule/default Fix CI 2026-04-27 13:11:59 +02:00
tasks feat: Update CI to latest standards 2022-10-08 23:12:48 +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 Fix CI 2026-04-27 13:11:59 +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.8.0 [skip ci] 2026-03-15 11:39:18 +00:00
README.md Fix CI 2026-04-27 13:11:59 +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 42
  • Fedora 43

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