community.general.kernel_blacklist (0.2.1) — module

Blacklist kernel modules

Authors: Matthias Vogelgesang (@matze)

Install collection

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


Add to requirements.yml

  collections:
    - name: community.general
      version: 0.2.1

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
  kernel_blacklist:
    name: nouveau
    state: present

Inputs

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

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

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