community.general.kernel_blacklist (2.5.9) — module

Blacklist kernel modules

Authors: Matthias Vogelgesang (@matze)

Install collection

Install with ansible-galaxy collection install community.general:==2.5.9


Add to requirements.yml

  collections:
    - name: community.general
      version: 2.5.9

Description

Add or remove kernel modules from blacklist.

Usage examples

  • Success
    Steampunk Spotter scan finished with no errors, warnings or hints.
- name: Blacklist the nouveau driver module
  community.general.kernel_blacklist:
    name: nouveau
    state: present

Inputs

    
name:
    description:
    - Name of kernel module to black- or whitelist.
    required: true
    type: str

state:
    choices:
    - absent
    - present
    default: present
    description:
    - Whether the module should be present in the blacklist or absent.
    type: str

blacklist_file:
    description:
    - If specified, use this blacklist file instead of C(/etc/modprobe.d/blacklist-ansible.conf).
    type: str